Home Forums WoodMart support forum can these fields be reversed?

can these fields be reversed?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #543009

    Impex
    Participant

    can these fields be reversed?

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

    Hung Pham
    Participant

    Hi Impex,

    Thanks for reaching to us and take our apologies for the long delay in answering.

    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,

    #543608

    Impex
    Participant

    We don’t succeed, if we add that code it hides them.
    We want to leave the reviews last.

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

    Hung Pham
    Participant

    Hi Impex,

    To assist you in the best possible manner, I kindly ask that you please provide me temporary wp-admin info (wp-admin URL, username, password) to the Private Content area, this will allow me to thoroughly investigate and address your concerns more efficiently.

    Regards,

    #545212

    Impex
    Participant

    ok.
    Please solve this problem too,
    Blocul „woocommerce_layered_nav”

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

    Hung Pham
    Participant

    Hi Impex,

    1. Order tabs

    I switched to Child theme and re-add code, please check again.

    2. Widgets

    Try to install Classic Widgets plugin to fix this problem https://wordpress.org/plugins/classic-widgets/

    Regards,

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