Created
December 31, 2015 13:51
-
-
Save jesseeproductions/95cf5951086c95b683d5 to your computer and use it in GitHub Desktop.
Coupon Creator - Add Expired Message to Print Coupons
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
| /* | |
| * Coupon Creator - Add Expired Message to Print Coupons | |
| * Version 2.1.2 | |
| */ | |
| add_action('cctor_print_no_show_coupon', 'cctor_expired_message' ); | |
| function cctor_expired_message() { | |
| echo '<h3>Sorry, this coupon has expired.</h3>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment