如何删除 Woocommerce 商店页面上的简短描述
How can I remove short description on the shop page in Woocommerce
不久,我只想删除 shop/archive 页面上的简短描述。我添加了两张图片。这将有助于您的理解。我尝试了很多组合,但在商店页面上不起作用。
我找到了一个代码,但它刚刚在产品页面上被删除了。
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
function woocommerce_template_single_excerpt() {
return;
}
选项 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;
}
}
不久,我只想删除 shop/archive 页面上的简短描述。我添加了两张图片。这将有助于您的理解。我尝试了很多组合,但在商店页面上不起作用。
我找到了一个代码,但它刚刚在产品页面上被删除了。
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
function woocommerce_template_single_excerpt() {
return;
}
选项 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;
}
}