Remove shippng tab from WooCommerce single product page
-
/* 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)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Remove shippng tab from WooCommerce single product page’ is closed to new replies.