Home Forums WoodMart support forum Order Tab Product

Order Tab Product

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

    [email protected]
    Participant

    Hello,
    I’d like to know the way to order the information tabs in the product page.
    I send attached image where you can see that we have “información técnica” in the last position and I want to put this tab in the second position after “description.

    Thanks

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

    Luke Nielsen
    Keymaster

    Hello,

    In order to move your tab on the second place, please try to add this code to the functions.php file in your child theme

    if ( ! function_exists('wd_single_move_shipping_tab') ) {
    
        function wd_single_move_shipping_tab( $tabs ) {
            $tabs['wd_additional_tab']['priority'] = 25;
    
            return $tabs;
        }
    
        add_filter( 'woocommerce_product_tabs', 'wd_single_move_shipping_tab', 98 );
    }

    Kind Regards

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