• Resolved ediloso

    (@ediloso)


    The injected BIDS tab on product page changes the position of the existing tabs…
    now I have:
    “Details”, “BIDS”, “Description”, etc.
    I do want that “Description” tab to remain the first tab…

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Nitesh

    (@nitesh_singh)

    Hi @ediloso,

    Could you please let me know which theme are you using? If it is paid, then kindly help us setup so that we can debug and see how can we ensure tabs dont change. Feel free to write to nitesh[at]auctionplugin.net.

    Regards,
    Nitesh

    Thread Starter ediloso

    (@ediloso)

    I’ve sent you a few emails detailing some aspects of your plugin but no answer from your part…

    Regards,

    Plugin Author Nitesh

    (@nitesh_singh)

    Hi @ediloso ,

    Kindly go through this link – https://docs.woocommerce.com/document/editing-product-data-tabs/

    You can use below filter:
    add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );

    
    function woo_reorder_tabs( $tabs ) {
    
        
        $tabs['description']['priority'] = 5;            // Description 1st
        $tabs['uwa_auction_bids_history']['priority'] = 10;    // Bid Tab 2nd
        $tabs['additional_information']['priority'] = 25;    // Additional information third
        $tabs['reviews']['priority'] = 30;            // Reviews last
        
    
        return $tabs;
    }
    
    

    Regards,
    Nitesh

    Thread Starter ediloso

    (@ediloso)

    The issue is NOT resolved!

    The above code affects ALL the product pages… auctions or not!
    While on the auction pages the tabs are in the desired order, on regular product pages (where the tabs were OK from the start) now there is a GAP between them (caused by the missing BIDS tab…).
    A better and more elegant solution will be to make the future version of the plugin code to place the bids tab in the correct position, without messing the existing tabs.
    Thanks!

    Plugin Author Nitesh

    (@nitesh_singh)

    Hi @ediloso ,

    We will definitely see how we can achieve correct positioning and implement it in future update.

    Regards,
    Nitesh

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘BIDs tab disturbs the existing tabs!’ is closed to new replies.