php 更改WooCommerce单个产品页面位置为结局的商人主题:WooCommerce销售倒计时计时器和折扣插件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 更改WooCommerce单个产品页面位置为结局的商人主题:WooCommerce销售倒计时计时器和折扣插件相关的知识,希望对你有一定的参考价值。

<?php

/**
 * Add This whole code in working theme functions.php inside php tag to alter woocommerce native positions
 * Theme: https://themeforest.net/item/merchandiser-ecommerce-wordpress-theme-for-woocommerce/15791151
 * Finale: WooCommerce Sales Countdown Timer & Discount Plugin
 */
add_action('wp', 'merchandiser_wcct_modify_positions', 90);
if (!function_exists('merchandiser_wcct_modify_positions')) {

    function merchandiser_wcct_modify_positions() {
        if (function_exists('WCCT_Core')) {
            $wcct_core = WCCT_Core()->appearance;

            // removing wcct action hooks on theme
            remove_action('woocommerce_single_product_summary', array($wcct_core, 'wcct_position_above_title'), 2.3);
            remove_action('woocommerce_single_product_summary', array($wcct_core, 'wcct_position_below_title'), 9.3);
            remove_action('woocommerce_single_product_summary', array($wcct_core, 'wcct_position_below_review'), 11.3);
            remove_action('woocommerce_single_product_summary', array($wcct_core, 'wcct_position_below_price'), 17.3);
            remove_action('woocommerce_single_product_summary', array($wcct_core, 'wcct_position_below_short_desc'), 21.3);
            remove_action('woocommerce_single_product_summary', array($wcct_core, 'wcct_position_below_add_cart'), 39.3);

            add_action('woocommerce_single_product_summary_single_title', array($wcct_core, 'wcct_position_above_title'), 4);
            add_action('woocommerce_single_product_summary_single_title', array($wcct_core, 'wcct_position_below_title'), 7);
            add_action('woocommerce_single_product_summary_single_excerpt', array($wcct_core, 'wcct_position_below_review'), 16);
            add_action('woocommerce_single_product_summary_single_excerpt', array($wcct_core, 'wcct_position_below_price'), 17);
            add_action('woocommerce_single_product_summary_single_excerpt', array($wcct_core, 'wcct_position_below_short_desc'), 22);
            add_action('woocommerce_single_product_summary_single_add_to_cart', array($wcct_core, 'wcct_position_below_add_cart'), 32);
        }
    }

}

以上是关于php 更改WooCommerce单个产品页面位置为结局的商人主题:WooCommerce销售倒计时计时器和折扣插件的主要内容,如果未能解决你的问题,请参考以下文章

php 为XL WooCommerce销售触发插件更改Eva主题的WooCommerce单一产品页面位置

php 为Finale更改WooCommerce单一产品页面位置为TheGem主题:WooCommerce销售倒数计时器和折扣插件

在 Woocommerce 的单个产品页面中添加产品备注字段

Woocommerce重写单个产品页面URL

php 在XL WooCommerce销售触发插件的UNCODE主题中更改WooCommerce单一产品位置

php 在XL WooCommerce销售触发插件的Float主题中更改WooCommerce单一产品位置