目录页面太混乱,产品的描述和不同长度的简短描述。这种设置使每种产品的设置不同,我希望每种产品在目录网格中占用更多的空间。因此,我想从目录页面中删除产品的描述,并仅在用户选择产品时将其显示在单个产品页面中。如果可能,我也希望搜索功能不包括产品简短描述中的文本。任何建议都将不胜感激。
答案 0 :(得分:1)
function filter_woocommerce_short_description( $post_post_excerpt ) {
if(is_shop() || is_product_category() ) {
return false;
} else {
return $post_post_excerpt;
}
};
// add the filter
add_filter( 'woocommerce_short_description', 'filter_woocommerce_short_description', 10, 1 );