Reordering WooCommerce Tabs ( with Yikes Included)
-
Hello,
I am trying to re-order my tabs ( with Yikes as the priority #1 tab.) anyone know how to get this done? here’s the code I’m using.
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘description’] ); // Remove the description tab
unset( $tabs[‘reviews’] ); // Remove the reviews tab
unset( $tabs[‘additional_information’] ); // Remove the additional information tabreturn $tabs;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Reordering WooCommerce Tabs ( with Yikes Included)’ is closed to new replies.