Home Forums WoodMart support forum how to re-arrange tabs on product page? Reply To: how to re-arrange tabs on product page?

#348382

Luke Nielsen
Keymaster

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