text Woocommerce删除简短说明
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Woocommerce删除简短说明相关的知识,希望对你有一定的参考价值。
/** Remove short description if product tabs are not displayed */
function dot_reorder_product_page() {
if ( get_option('woocommerce_product_tabs') == false ) {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
}
}
add_action( 'woocommerce_before_main_content', 'dot_reorder_product_page' );
/** Display product description the_content */
function dot_do_product_desc() {
global $woocommerce, $post;
if ( $post->post_content ) : ?>
<div itemprop="description" class="item-description">
<?php $heading = apply_filters('woocommerce_product_description_heading', __('Product Description', 'woocommerce')); ?>
<!-- <h2><?php echo $heading; ?></h2> -->
<?php the_content(); ?>
</div>
<?php endif;
}
add_action( 'woocommerce_single_product_summary', 'dot_do_product_desc', 20 );
以上是关于text Woocommerce删除简短说明的主要内容,如果未能解决你的问题,请参考以下文章
Woocommerce 简短描述摘录长度
在帖子页面上预填充 Woocommerce 简短描述
Woocommerce 重新排序单页钩子,描述显示两次
在 WooCommerce 3.0+ 中为简短描述添加属性
在主页和类别页面中限制 woocommerce 产品简短描述
Woocommerce产品简短描述中同一类别的产品下拉列表