Home Forums WoodMart support forum Product tabs before theme tabs

Product tabs before theme tabs

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

    t.simkina
    Participant

    Hello, I would like to know if there is a possibility to place product-specific tabs before tabs configured in theme settings.
    Kind regards and thank you,
    Tatiana

    #534684

    Hung Pham
    Participant

    Hi t.simkina,

    Thanks for reaching to us and appreciate your patience.

    Use the below code for reordering the tabs, just set priority values per your needs. Paste the code into 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'] = 5;			// Reviews first
    	$tabs['description']['priority'] = 10;			// Description second
    	$tabs['additional_information']['priority'] = 15;	// Additional information third
    
    	// Custom Tabs are from Product Settings
    	// $tabs['wd_custom_tab']['priority'] = 2; 
    	// $tabs['wd_custom_tab_2']['priority'] = 3;
    
    	// Additional Tabs are from Theme Settings
    	// $tabs['wd_additional_tab']['priority'] = 4;
    	// $tabs['wd_additional_tab_2']['priority'] = 5;
    
    	return $tabs;
    }

    Regards,

    #534708

    t.simkina
    Participant

    Dear Hung, this is really great, thank you very much for your expertise!! This question is solved!

    #534776

    Hung Pham
    Participant

    Hi t.simkina,

    Glad to hear your issue has been resolved. Keep us in mind for future questions and concerns, we’re always here to help!

    If you have a quick minute we always appreciate a 5-star rating on our theme!

    https://themeforest.net/item/woodmart-woocommerce-wordpress-theme/reviews/20264492

    Your feedback is the motivation to improve our work and services.

    Regards,

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

The topic ‘Product tabs before theme tabs’ is closed to new replies.