Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save webtoffee-git/fa1b2f2b9a1d720062901c98728ab979 to your computer and use it in GitHub Desktop.
Modify document billing address title using - WooCommerce PDF Invoices, Packing Slips, Delivery Notes & Shipping Labels by WebToffee
add_filter('wf_alter_billing_address_label','wt_alter_billing_address_label',10,1);
function wt_alter_billing_address_label($text){
return $text = 'Shipping Address';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment