删除 WooCommerce 产品页中的简介 – Remove Woocommerce Product Short Description

最近的小站, 产品简介占了太多未知, 干脆干掉它, 让用户在首屏就看到产品图片 remove_action( …


最近的小站, 产品简介占了太多未知, 干脆干掉它, 让用户在首屏就看到产品图片

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
function woocommerce_template_single_excerpt() {
        return;
}

感谢:
https://stackoverflow.com/questions/31190295/remove-woocommerce-product-short-description

More posts. You may also be interested in.