Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Created February 13, 2020 06:08
Show Gist options
  • Select an option

  • Save webtoffee-git/0a8459b5a627e74bcafef28290f874dc to your computer and use it in GitHub Desktop.

Select an option

Save webtoffee-git/0a8459b5a627e74bcafef28290f874dc to your computer and use it in GitHub Desktop.
Hide Email from shipping label using - WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels by WebToffee
//Hide email
add_filter('wf_alter_billing_email', 'wt_alter_billing_email', 10,2);
function wt_alter_billing_email($email, $order_id){
$email = '';
return $email;
}
//Hide email text
add_filter('wf_alter_billing_email_text', 'wt_alter_billing_email_text', 10,1);
function wt_alter_billing_email_text($text){
$text = '';
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment