无法在单个产品页面上删除生成的产品数据

时间:2019-03-06 01:38:23

标签: wordpress woocommerce product

我试图在单个产品页面上隐藏产品数据,我尝试了许多解决方案,例如使用'woocommerce_single_product_summary'的钩子,但是没有任何结果

 add_filter( 'woocommerce_structured_data_product', 'structured_data_product_nulled', 10, 2 );

    function structured_data_product_nulled( $markup, $product ){
        $markup = '' ;
        return $markup;
    }

但是我无法删除生成的数据,这是函数

Here are the attributes that i wan't to hide, they're allready in tabs i don't want them to be shown in the description

1 个答案:

答案 0 :(得分:0)

我会把CSS隐藏为最快的方法。 只需打开google chrome,右键单击相应项目,然后选择检查器即可。

进入检查器,单击右上角的+,将为该元素创建一个新的CSS类。

类型

 display:none

,如果该元素消失,则将CSS复制并粘贴到wordpress管理员的Apperance> Customiser Additional CSS中。

这将隐藏这些项目。