Advertisement
StonehengeCreations

EM Pro – Change Coupon Output

Feb 25th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. /**********
  2.     Change the shown text when an EM Coupon has been applied.
  3. ***********/
  4. function stonehenge_em_change_coupon_output( $text, $EM_Coupon ) {
  5.     $text   = $EM_Coupon->coupon_description;
  6.     return $text;
  7. }
  8. add_filter('em_coupon_get_discount_text', 'stonehenge_em_change_coupon_output', 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement