StonehengeCreations

Events Manager Pro – Change Coupon Output

Feb 25th, 2020 (edited)
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Replaces the discount text with the description when an EM Coupon has been applied.
  4.  *
  5.  * @param string $text      The default discount text (15.00% Off)
  6.  * @param object $EM_Coupon The Events Manager Pro Coupon object.
  7.  * @return string
  8.  */
  9. function stonehenge_em_change_coupon_output( $text, $EM_Coupon ) {
  10.     return $EM_Coupon->coupon_description;
  11. }
  12. add_filter( 'em_coupon_get_discount_text', 'stonehenge_em_change_coupon_output', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment