Advertisement
designbymerovingi

Change Load Coupon Labels

Nov 2nd, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1. /**
  2.  * Change Load Coupon Labels
  3.  * Changes the coupon labels for the mycred_load_coupon shortcode
  4.  * without the need to translate the plugin. Replace "MY WORD" with your string.
  5.  * @version 1.0
  6.  */
  7. add_filter( 'mycred_load_coupon', 'mycred_pro_adjust_coupon_form' );
  8. function mycred_pro_adjust_coupon_form( $output ) {
  9.  
  10.     // Replace "Coupon" title
  11.     $output = str_replace( '<label for="mycred-coupon-code">' . __( 'Coupon', 'mycred' ) . '</label>', '<label for="mycred-coupon-code">MY WORD</label>', $output );
  12.  
  13.     // Replace button label
  14.     $output = str_replace( 'button-primary" value="' . __( 'Apply Coupon', 'mycred' ) . '"', 'button-primary" value="MY WORD"', $output );
  15.  
  16.     return $output;
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement