Hi there Kyle,
Thanks for reaching out to us! Good question here ๐
So the process would be the same, but ofcourse a bit tweaked:
/**
* Move RSVP Ticket form in events template
*/
if (class_exists('Tribe__Tickets__RSVP')) {
remove_action( 'tribe_events_single_event_after_the_meta', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ), 5 );
add_action( 'tribe_events_single_event_before_the_meta', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ), 5 );
}
If you need to move the form in posts, you’ll need to use the following code instead:
/**
* Move RSVP Ticket form in posts template
*/
if (class_exists('Tribe__Tickets__RSVP')) {
remove_filter( 'the_content', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ) );
// re hook the function to run where needed
}
Please let me know if this does the trick,
Best,
Nico