jmccole83
5/21/2018 - 10:05 AM

WooCommerce | Move Product Tabs under the Summary

Add the below snippet to functions.php to move the Product Tabs to the bottom of the Product Summary.

// Move Product Tabs to end of Summary
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_output_product_data_tabs', 60 );