• /* Remove shippng tab from WooCommerce single product page (Dokan Use Case)*/

    add_filter( ‘woocommerce_product_tabs’, ‘wcs_woo_remove_more_seller_product_tab’, 98 );
    function wcs_woo_remove_more_seller_product_tab($tabs) {
    unset($tabs[‘shipping’]);
    return $tabs;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello@blacxi,

    You can hide the Tab using simple CSS :

    li.shipping_tab.active {
        display: none !important;
    }

    Use the CSS on your theme additional CSS section. It will help you hide the shipping TAB. Let me know if that works ??

    Good Day ??

    @roshni07 How to add information on shipping tab as Admin?

    Previous advices not working. Coud you please tell one more time how hide “Shipping” cart on product card?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove shippng tab from WooCommerce single product page’ is closed to new replies.