Last active
October 10, 2017 17:18
-
-
Save hannahswain/7da59f9cdf21e6c6551236069928e6ed to your computer and use it in GitHub Desktop.
This file contains hidden or 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