【问题标题】:How can I remove short description on the shop page in Woocommerce如何删除 Woocommerce 商店页面上的简短描述
【发布时间】:2022-01-22 16:42:20
【问题描述】:

很快,我只想删除商店/存档页面上的简短描述。我添加了两张图片。这将有助于您的理解。我尝试了很多组合,但无法在商店页面上工作。

我找到了一个代码,但它刚刚在产品页面上被删除。

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

function woocommerce_template_single_excerpt() {
        return;
}

【问题讨论】:

  • 这是您的主题添加的概率。提供更多详细信息您正在使用什么主题或查看主题文档以了解挂钩。
  • 我正在使用电子马德拉斯主题。我检查了文档,但没有关于钩子的信息。

标签: php wordpress woocommerce hook-woocommerce


【解决方案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
猜你喜欢
  • 2020-09-29
  • 2019-12-14
  • 2014-05-27
  • 2019-06-11
  • 1970-01-01
  • 2021-02-12
  • 1970-01-01
  • 2015-07-01
  • 2023-03-13
相关资源
最近更新 更多