如何删除 Woocommerce 商店页面上的简短描述
Posted
技术标签:
【中文标题】如何删除 Woocommerce 商店页面上的简短描述【英文标题】:How can I remove short description on the shop page in Woocommerce 【发布时间】:2022-01-22 16:42:20 【问题描述】:很快,我只想删除商店/存档页面上的简短描述。我添加了两张图片。这将有助于您的理解。我尝试了很多组合,但无法在商店页面上工作。
我找到了一个代码,但它刚刚在产品页面上被删除。
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
function woocommerce_template_single_excerpt()
return;
【问题讨论】:
这是您的主题添加的概率。提供更多详细信息您正在使用什么主题或查看主题文档以了解挂钩。 我正在使用电子马德拉斯主题。我检查了文档,但没有关于钩子的信息。 【参考方案1】:选项 1:要完全删除描述,请将以下操作放在您的子主题 functions.php 中
remove_action('woocommerce_after_shop_loop_item_title','electro_template_loop_product_excerpt', 80 );
选项 2:要覆盖该函数,请将以下函数放在您的子主题 functions.php 文件中
function electro_template_loop_product_excerpt()
global $post;
// In case you want to limit description for example or output different content there
if ( ! is_object( $post ) || ! $post->post_excerpt || $post->post_excerpt )
return;
【讨论】:
你救了我!非常感谢,它有效。 @martin-mirchev以上是关于如何删除 Woocommerce 商店页面上的简短描述的主要内容,如果未能解决你的问题,请参考以下文章
类别页面空白,但商店在 WordPress 上的 WooCommerce 上工作
php [WooCommerce Core]从商店页面上的特定类别中排除产品