Home Forums WoodMart support forum How to change Tabs order?

How to change Tabs order?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #618725

    hello.hellobloom
    Participant

    Hi,

    I would like to change the order of the tabs on the product page of my website. The current order is Reviews, Description, Specifications. I want to move the Reviews tab to the last position.
    I tried changing the order using this method: https://rudrastyh.com/woocommerce/change-product-tabs-order.html, but it didn’t work.

    Where can I adjust this at the theme level?
    Thank you,
    Kinga

    Attachments:
    You must be logged in to view attached files.
    #618905

    Hung Pham
    Keymaster

    Hi hello.hellobloom ,

    Thanks for reaching to us.

    The code below will help you to reorder the tabs. Please try to add the code below in the functions.php file in your child theme.

    /**
     * Reorder product data tabs
     */
    add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
    function woo_reorder_tabs( $tabs ) {
    
    	$tabs['reviews']['priority'] = 33;			// Reviews first
    	$tabs['description']['priority'] = 4;			// Description second
    	$tabs['additional_information']['priority'] = 5;	// Additional information third
    
    	// Additional Tabs are from Theme Settings
    	 $tabs['wd_additional_tab']['priority'] = 1;
    	 $tabs['wd_additional_tab_2']['priority'] = 2;
    
    	return $tabs;
    }

    Please follow this guide:
    https://woocommerce.com/document/editing-product-data-tabs/

    Best Regards

    #619077

    hello.hellobloom
    Participant

    Thank you. 🙂

    Attachments:
    You must be logged in to view attached files.
    #619145

    Hung Pham
    Keymaster

    Hi hello.hellobloom,

    You can adjust the order of the attributes via Products > Attributes > drag each attribute in the appropriate order (more detail in the below video).
    https://monosnap.com/file/H9O9u7fyWBUApExfNk1Ma9t0xRczpq

    Best Regards

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