Conversation
supportHi how can remove shipping tab from single product page? best regards
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
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
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
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