Hey Dan,
To verify, are you using the WooTickets plugin or are you using the new Events Tickets Plus plugin along with WooCommerce. You can learn more about the difference here. We’re still supporting WooTickets, however we’ll no longer be updating the plugin and all the functionality has been moved to the Events Tickets Plus and you should have a free version of the plugin available within your dashboard as a previous purchaser of the WooTickets plugin.
If you would like to continue using the WooTickets plugin you can use a solution like the following to move the form:
if(class_exists('TribeWooTickets')) {
remove_action( 'tribe_events_single_event_after_the_meta', array( TribeWooTickets::get_instance(), 'front_end_tickets_form'), 5 );
}
if(class_exists('TribeWooTickets')) {
add_action( 'tribe_events_single_event_before_the_content', array( TribeWooTickets::get_instance(), 'front_end_tickets_form') );
}
Let me know if this helps.
Thanks!