Reply 202073 to: Reordering custom tab

Avatar: javigilta
javigilta
Participant
October 31, 2018 at 15:22

Hi,

I read that article and I took the “Re-ordering Tabs” snippet:

/**
 * 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 third

	return $tabs;
} 

The problem is that I don’t know the name of the custom tab that I did in “Theme Options > Single Product Page > Tabs Settings”

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.