【问题标题】:WooCommerce product title cannot be removed on the single product pageWooCommerce 产品标题无法在单个产品页面上删除
【发布时间】:2020-05-13 16:37:21
【问题描述】:

我无法在单页上删除 WooCommerce 产品的默认标题。

标题没有任何标签让我通过 css 隐藏它。

我也尝试过使用

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );

但仍然无法正常工作。

有人对此有解决方案吗?

【问题讨论】:

    标签: php wordpress woocommerce hook-woocommerce


    【解决方案1】:

    按照以下方式试一试

    function customise_product_page() {
        remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
    }
    add_action( 'woocommerce_before_single_product', 'customise_product_page' );
    

    【讨论】:

    • 那不是通过woocommerce_single_product_summary添加的产品标题。在我看来,以前是从您的主题中特别添加的
    • 嗯,您的主题似乎还有更多问题,请参阅:crossfithurstville.com.au/wp-content/themes/crossfit。没有任何钩子可以解决您的问题。
    猜你喜欢
    • 2018-12-11
    • 1970-01-01
    • 2018-04-03
    • 1970-01-01
    • 2018-07-07
    • 2019-02-11
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多