在Woo Commerce中移动简短描述

时间:2016-01-03 16:05:55

标签: wordpress wordpress-plugin woocommerce

我到处寻找如何在Woocommerce的单个产品页面上将图片右侧的产品简短描述移动到选项卡中。我在任何地方都找不到它!

有人可以帮助我做到这一点。

1 个答案:

答案 0 :(得分:0)

只需remove the woocommerce_template_single_excerpt callback from the woocommerce_single_product_summary action

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

...并将其直接添加到自定义tabs.php template

woocommerce_template_single_excerpt();

详细了解覆盖模板in the docs