Skip to content

Instantly share code, notes, and snippets.

@fervous
Forked from digitalchild/functions.php
Created May 16, 2017 03:29
Show Gist options
  • Save fervous/f97358204a29d5cbf6110fd24b6524c7 to your computer and use it in GitHub Desktop.
Save fervous/f97358204a29d5cbf6110fd24b6524c7 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