Thanks for your reply. Ok, so I tried this following piece of code and it did not work. I added this to my child theme functions.php file
add_filter( ‘tribe_tickets_buy_button’, ‘changes_button_text’, 11, 2 );
function changes_button_text( $html ) {
$html = str_replace(“Buy Now”, “Book Now”, $html);
return $html;
}
I also haven’t figured out within this above code how to ensure that the button doesn’t go to the #buytickets anchor that is set by Tribe and only goes to the page itself.
Could you assist with both?
Many thanks