Skip to content

Instantly share code, notes, and snippets.

@aadityajs
Forked from mikejolley/functions.php
Created January 3, 2014 10:24
Show Gist options
  • Save aadityajs/8235849 to your computer and use it in GitHub Desktop.
Save aadityajs/8235849 to your computer and use it in GitHub Desktop.
Move Tabs Around in WooCommerce
<?php
add_action( 'wp' , 'wc_order_tabs' );
function wc_order_tabs() {
// Remove tabs
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_description_tab', 10 );
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_attributes_tab', 20 );
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_reviews_tab', 30 );
// Re-hook with different priorities. See the final args (10, 20, 30) - thats the order they get rendered.
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_description_tab', 20 );
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_attributes_tab', 10 );
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_reviews_tab', 30 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment