Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created May 16, 2017 03:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save digitalchild/f0c7a077536643e1f477970888dc02ae to your computer and use it in GitHub Desktop.
Save digitalchild/f0c7a077536643e1f477970888dc02ae to your computer and use it in GitHub Desktop.
Remove the shipping method title from WC Vendors Pro
<?php
// Remove the Vendor shop name from the shipping package title
add_filter( 'wcv_vendor_shipping_package_title', 'remove_shipping_title' );
function remove_shipping_title( $title ){
return '';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment