Skip to content

Instantly share code, notes, and snippets.

@Veesibility
Created June 17, 2015 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Veesibility/752900281e726bc54b70 to your computer and use it in GitHub Desktop.
Save Veesibility/752900281e726bc54b70 to your computer and use it in GitHub Desktop.
Woocommerce - Move Woocommerce Tab Product
/** This code should be added to functions.php of your theme **/
/* Move Woocommerce Tab */
add_action( 'after_setup_theme', 'move_woocommerce_tab' );
function move_woocommerce_tab() {
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment