Hi!
I added a custom tab to my single product page.
This custum tab shows after the Reviews tab (valoraciones): https://prnt.sc/lco8a2
How can I put the Reviews tab at the end?
I tried with this snippet, but I don’t know the name or the priority of my custom tab:
/**
* 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;
}
Thanks!