Skip to content

Instantly share code, notes, and snippets.

@lukecav
Forked from woogists/wc-modify-email.php
Created July 9, 2018 19:30
Show Gist options
  • Save lukecav/253e7362265adc3c943e51a2c7afdc00 to your computer and use it in GitHub Desktop.
Save lukecav/253e7362265adc3c943e51a2c7afdc00 to your computer and use it in GitHub Desktop.
[WooCommerce StoreCredit] Modify email sent
/* Code goes in theme functions.php */
add_filter( 'woocommerce_email_template_store_credit', 'wc_ninja_store_credit_template' );
function wc_ninja_store_credit_template() {
return get_stylesheet_directory() . "/woocommerce/customer-store-credit.php";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment