我的问题与此WooCommerce - Move Product Description out Tabs into Summary
非常相似在我的情况下,我想移动评论标签并将其置于产品说明下方。
如何使用钩子完成?有没有办法使用/ template文件夹中的某个文件来执行此操作,该文件可以在子主题中被覆盖?
答案 0 :(得分:2)
使用WooCommerce功能从标签中删除评论后,您可以执行以下操作。
add_action('woocommerce_after_single_product_summary', create_function( '$args', 'call_user_func(\'comments_template\');'), 14);
干杯