Reputation: 1239
My question is very similar to this WooCommerce - Move Product Description out Tabs into Summary
In my case, I want to move reviews tab and bring it below product description.
How can this be done using hooks? Is there a way to do this using some file within /template folder which can be overridden in child theme?
Upvotes: 0
Views: 3050
Reputation: 76
After removing the reviews from the tabs using WooCommerce functions you can do something like this.
add_action('woocommerce_after_single_product_summary', create_function( '$args', 'call_user_func(\'comments_template\');'), 14);
Cheers
Upvotes: 2