Created
March 9, 2018 17:13
-
-
Save woogists/6fc35d11351bc147d071c275f352c268 to your computer and use it in GitHub Desktop.
[WooCommerce StoreCredit] Modify email sent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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