Advertisement
Guest User

“Buy Now” Button to "Register"

a guest
Feb 25th, 2020
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. * Change "Buy Now!" button text;
  2. *
  3. function tribe_buy_now_button_text( $html ) {
  4. $html = str_replace( 'Buy Now!' , 'Register Now!', $html );
  5. return $html;
  6. }
  7. add_filter( 'tribe_tickets_buy_button', 'tribe_buy_now_button_text', 11, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement