Created
August 29, 2013 15:10
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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