Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Nazmul Hassan

    (@nazmulhassann20)

    Hello @sfandcom,

    You may need to modify the Tab section of Dokan to remove the shipping tab. Kindly use this hook – woocommerce_product_tab ??

    Cheers!

    hi
    Can you help what and where code i should use ?
    Best Regards

    Plugin Author Nazmul Hassan

    (@nazmulhassann20)

    Hello,

    You can try the below code on your child-theme functions.php file –

    add_filter('woocommerce_product_tabs','remove_shipping_tab',11);

    function remove_shipping_tab($tabs){
            unset ( $tabs['shipping'] );
            return $tabs;
    }

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘remove Shipping Tab’ is closed to new replies.