且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在wordpress的单个产品页面中删除wordpress的简短描述选项卡?

更新时间:2022-04-15 07:39:59

简短描述选项卡称为 product_summary;在您的 functions.php

The short description tab is called product_summary; use the snippet below in your functions.php

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

function woocommerce_template_single_excerpt() {
        return;
}

请注意,并非所有主题都在选项卡中呈现 product_summary,对于某些主题,应相应调整代码段.

Please note that not all the themes are rendering product_summary in a tab, for some themes the snippet should be tweaked accordingly.