• Resolved wbbrito

    (@wbbrito)


    Hi,

    I noticed that in this last update of the plugin, the conditions established by each supplier are appearing in the delivery area.

    How do I hide these items from the screen? See the image.

    Thanks.

    Image

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @wbbrito ,

    This information appears if you are on Dokan Pro & your vendors have shipping methods for the shipping zones. Please contact our support to get regarding Dokan Pro features.

    If you do not want to have the shipping tab on the single product page, you can use this code in your theme’s functions.php file:

    add_filter( 'woocommerce_product_tabs', 'remove_dokan_single_product_tabs', 99);
    
    function remove_dokan_single_product_tabs ($tabs) {
        unset($tabs['shipping']);
        return $tabs;
    };

    Thank you ??

    Thread Starter wbbrito

    (@wbbrito)

    Thanks. @rur165

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Shipping Methods in Product Page’ is closed to new replies.