Skip to content

Instantly share code, notes, and snippets.

@xadapter
Last active March 11, 2020 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xadapter/c132982bdc24cda8294bf88ea5f991f9 to your computer and use it in GitHub Desktop.
Save xadapter/c132982bdc24cda8294bf88ea5f991f9 to your computer and use it in GitHub Desktop.
Snippet to change the title 'shipping detail' in order completion email using WooCommerce Shipment Tracking Pro plugin: https://www.pluginhive.com/product/woocommerce-shipment-tracking-pro/
/**
* Title : Change the title Shipping detail in order completion email in woocommerece shipment tracking Pro plugin.
* Created at : 09 Mar 2018
* Updated at : 25 May 2018
* PluginHive Plugins : https://www.pluginhive.com/product-category/woocommerce-plugin/
* Gist Link : https://gist.github.com/xadapter/c132982bdc24cda8294bf88ea5f991f9
*/
add_filter( 'wf_shipment_tracking_email_shipping_title', function($title) {
$title = 'Shipping Details'; // Change the text 'Shipping Details' according to your requirement
return $title;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment