Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alamgircsebd/cd9464c425228edfa525e46880465c43 to your computer and use it in GitHub Desktop.
Save alamgircsebd/cd9464c425228edfa525e46880465c43 to your computer and use it in GitHub Desktop.
Removed dokan shipping tab from single product page
/**
* Removed dokan shipping tab from single product page
*
* @param array $tabs
*/
function remove_dokan_registered_product_shipping_tab( $tabs ) {
unset( $tabs['shipping'] );
return $tabs;
}
add_action( 'woocommerce_product_tabs', 'remove_dokan_registered_product_shipping_tab', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment