Advertisement
eventsmanager

Add coupon description in booking form

Jun 18th, 2013
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function em_mod_add_coupon_description($text, $EM_Coupon){
  2. $text = $text.'<br/>'.$EM_Coupon->coupon_description;
  3. return $text;
  4. }
  5. add_filter('em_coupon_get_discount_text','em_mod_add_coupon_description',10,2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement