• Resolved gregisle

    (@gregisle)


    Hi,

    How do I find out the shortcode for the custom tabs ‘details’ and ‘shipping’ on this page? I need to re-order the tabs so I have ‘description’, ‘details’, ‘shipping’ and ‘additional information’ last. Any ideas please?

    thanks,
    Greg

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter gregisle

    (@gregisle)

    Hi,
    Managed to solve it if it helps anybody else:

    /**
    * Reorder product data tabs
    */
    add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
    function woo_reorder_tabs( $tabs ) {

    $tabs[‘description’][‘priority’] = 5; // Description first
    $tabs[‘details’][‘priority’] = 10; // Details second
    $tabs[‘additional_information’][‘priority’] = 15; // Additional information third
    $tabs[‘shipping’][‘priority’] = 20; // Shipping last

    return $tabs;
    }

Viewing 1 replies (of 1 total)

The topic ‘shortcode’ is closed to new replies.