Reorder
-
Hi,
I want to change the order in which the information is displayed. I got the following code snipped from woocommerce:
/**
* Reorder product data tabs
*/
add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
function woo_reorder_tabs( $tabs ) {$tabs[‘reviews’][‘priority’] = 5; // Reviews first
$tabs[‘description’][‘priority’] = 10; // Description second
$tabs[‘additional_information’][‘priority’] = 15; // Additional information thirdreturn $tabs;
}Could you please tell me what identifier should I use instead of ‘additional_information’ so as to access tab?
Thanks,
Rajnish
The page I need help with: [log in to see the link]
The topic ‘Reorder’ is closed to new replies.