Skip to content

Instantly share code, notes, and snippets.

@woogist
Created August 29, 2013 15:10
Show Gist options
  • Save woogist/6379342 to your computer and use it in GitHub Desktop.
Save woogist/6379342 to your computer and use it in GitHub Desktop.
Move WooCommerce Product Tabs To Under Product Summary On The Right In Canvas
// Removes tabs from their original loaction
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
// Inserts tabs under the main right product content
add_action( 'woocommerce_single_product_summary', 'woocommerce_output_product_data_tabs', 60 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment