how to re-arrange tabs on product page?
-
Hi is there any way I can re-arrane the order of the tabs on the product pages? Please see the attached image, I want “review” tab to be at the right side of “specification” tab. The specification tab is a custom tab.
Attachments:
You must be
logged in to view attached files.
Hello,
Of course, the “review” tab can be reordered by means of the custom PHP code. Please, try to add the below code to the fucntions.php file in your child theme.
if ( ! function_exists('wd_reorder_review_tabs') ) {
function wd_reorder_review_tabs( $tabs ) {
$tabs['reviews']['priority'] = 130;
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'wd_reorder_review_tabs', 98 );
}
If you ever want to discuss things further, we’re here for you.
Best of Luck,
Kind Regards