WPIntell

Source evidence

remove Shipping Tab

Dokan Menu Hider · support · 2019-01-10T12:22:00+00:00

mixedsentiment
mediumseverity
0.72relevance
4replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

7 / 29 rows with source links

24.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

22 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
sfand.com resolved
Hi 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

Comments

4 shown
Nazmul Hassan 2019-01-25T13:47:00+00:00

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!

sfand59 2019-01-27T17:26:00+00:00

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

Nazmul Hassan 2019-01-28T04:03:00+00:00

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; }

sfand59 2019-01-28T06:11:00+00:00

Thanks