如何删除单词产品页面中的简短描述标签?
我有3个标签,如
1.产品说明
2.短说明
3.Reviews
我想删除简短说明标签,如果它是空的。
答案 0 :(得分:1)
简短描述标签称为product_summary
;使用下面的functions.php
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
function woocommerce_template_single_excerpt() {
return;
}
请注意,并非所有主题都在标签中呈现product_summary
,对于某些主题,应该相应地调整摘要。
答案 1 :(得分:0)
Add this in your functions.php theme file:
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['description'] );
return $tabs;
}