I tried adding the function to move the tickets box using the function above. I have a child theme so I created a file called functions.php in my child theme and then added the code below. When I upload it to my child theme and refresh the site, I get a completely white page. Any suggestions?
<?php
add_action( ‘init’, ‘move_eb_ticket_form’ );
function move_eb_ticket_form() {
$callback = array( Event_Tickets_PRO::instance(), ‘displayEventBriteTicketForm’ );
remove_action( ‘tribe_events_single_event_after_the_meta’, $callback, 9 );
add_action( ‘tribe_events_single_event_before_the_content’, $callback );
}
?>