Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save rajeshsingh520/380fad094c7ec10a7dca3499767ab0db to your computer and use it in GitHub Desktop.

Select an option

Save rajeshsingh520/380fad094c7ec10a7dca3499767ab0db to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_shipping_package_name', function($name){
if(class_exists('pi_dtt_delivery_type')){
$type = pi_dtt_delivery_type::getType();
if($type == 'delivery'){
return 'Delivery';
}
}
return $name;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment