我到处寻找如何在Woocommerce的单个产品页面上将图片右侧的产品简短描述移动到选项卡中。我在任何地方都找不到它!
有人可以帮助我做到这一点。
答案 0 :(得分:0)
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
...并将其直接添加到自定义tabs.php template:
woocommerce_template_single_excerpt();
详细了解覆盖模板in the docs。