Change the order of the tabs on the WooCommerce single product page
This code snippet changes the order of the tabs on the single product page in WooCommerce. In this case, the reviews tab is displayed first, followed by the description tab and the additional information tab.
PHP
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;
}
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY
2 Views