Home Forums WoodMart support forum Product Page Tabs order

Product Page Tabs order

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

    luda
    Participant

    Hi,

    I tried to change the tab order, to show the review-tab last on the product page.
    However, the reviews tab stayed first.
    I used the following code:

    add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
    function woo_reorder_tabs( $tabs ) {

    $tabs[‘description’][‘priority’] = 5; // Description first
    $tabs[‘woodmart_custom_tab’][‘priority’] = 10; // WooDmart Custom second
    $tabs[‘woodmart_additional_tab’][‘priority’] = 15; // WoodMart Additional information third
    $tabs[‘reviews’][‘priority’] = 20; // WoodMart Additional information third

    return $tabs;
    }

    Is something wrong with this code? What else might be blocking the correct behavior?

    Best
    LU

    #260940

    Hello,

    Our theme does not have the option to change the tabs. Please refer to the Woocommerce documentation or community forum.

    Best Regards

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