繁体   English   中英

删除 Woocommerce 产品简短说明

[英]Remove Woocommerce Product Short Description

我正在尝试删除 Woocommerce 中单个产品页面上显示的产品简短描述。默认情况下,它位于价格的正下方,我希望它完全消失。

我尝试使用此代码: remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20); 并放置在我的子主题文件夹的 functions.php 中,但它没有任何改变。

如果我尝试woocommerce_template_single_add_to_cartwoocommerce_template_single_meta来查看这段代码是否真的有效,它会删除添加到购物车按钮和产品元数据,但由于某种原因摘录不受影响。

还有其他解决方案可以删除它吗? 谢谢!! 约斯特

正确的代码段发布在这里: 如何删除wordpress在wordpress的单个产品页面中的简短描述标签?

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );

function woocommerce_template_single_excerpt() {
        return;
}

尝试在主题的functions.php中添加以下代码,

function remove_the_short_description() {
 remove_meta_box( 'postexcerpt', 'product', 'normal');
}

add_action('add_meta_boxes', 'remove_the_short_description', 999);

获取代码片段插件并运行

add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

function woo_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );   
return $tabs;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM