Skip to content

Instantly share code, notes, and snippets.

@rafsuntaskin
Created December 21, 2018 21:22
Show Gist options
  • Save rafsuntaskin/74b664417ad7e70cf39796f9cc1efbea to your computer and use it in GitHub Desktop.
Save rafsuntaskin/74b664417ad7e70cf39796f9cc1efbea to your computer and use it in GitHub Desktop.
Events Calendar Buy button change
<?php
add_filter( 'tribe_tickets_buy_button', 'rt_mt_buy_now_rename', 10, 4 );
function rt_mt_buy_now_rename( $html, $parts, $types, $event_id) {
$find = 'Buy Now!';
$replace = 'Register';
$html['button'] = str_replace( $find, $replace, $html['button'] );
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment