Skip to main content

If you’d using the standard WooCommerce tab mode within your products, and would like to move the tabs below the image/description area, then you can add the following code to your child theme functions.php:

function dante_product_tabs_override() {
  add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10);
  remove_action( 'woocommerce_single_product_summary', 'woocommerce_output_product_data_tabs', 35);
}
add_action('init', 'dante_product_tabs_override', 5);

– Ed

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.