Re-Ordering Tabs
-
So I found the resource on this page here:
https://docs.woocommerce.com/document/editing-product-data-tabs/
But I think I may be using it wrong?
/**
* Reorder product data tabs
*/
add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
function woo_reorder_tabs( $tabs ) {$tabs[‘seller_tab’][‘priority’] = 1;
return $tabs;
}I’ve tried “seller_tab”, “vendor_info” etc.
Trying to get the Vendor Info Tab to be first.
https://www.cukebook.com/product/cukebook-c-shirt/
Anthony
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Re-Ordering Tabs’ is closed to new replies.