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

how to re-arrange tabs on product page?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #348287

    seutaojiang
    Participant

    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.
    #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

Viewing 2 posts - 1 through 2 (of 2 total)