Home Forums WoodMart support forum Change Product Tabs Order

Change Product Tabs Order

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

    exaporriton
    Participant

    Dear Developers, on the product pages of my website I am using 4 product tabs which are the Description, Reviews, Additional Tab(From Theme Settings->Product Page->Tabs) and The Custom Tab(located on the product page).
    I would like to change the order of the Additional Tab and Custom Tab but I don’t know how these 2 tabs are called.
    What I mean “called” is that I am able to change the order of the Reviews tab by using the ‘reviews’ but what about the Custom and Additional Tab?

    “The snippet which I am using to change the order of the reviews tab”

    add_filter( ‘woocommerce_product_tabs’, ‘misha_change_tabs_order’ );

    function misha_change_tabs_order( $tabs ) {

    $tabs[‘reviews’][‘priority’] = 5;

    return $tabs;

    }

    Thank you for your time 🙂

    #201126

    Artem Temos
    Keymaster

    Hello,

    “Additional information” tab has slug name additional_information and our custom tab is woodmart_additional_tab

    Kind Regards

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