0

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?

Community
  • 1
  • 1
Chirag
  • 1,189
  • 2
  • 21
  • 43

1 Answers1

2

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

dzeriho
  • 76
  • 5