Hey there, Peggy–welcome back to the forums!
No need to apologize whatsoever! I know not everyone is a developer and tossing code around in forum threads and tutorials can be dizzying to say the least. š
You should be able to copy and paste this snippet into your theme’sĀ functions.php file:
/**
* Move RSVP Tickets 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_content', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ), 5 );
}
That will move the RSVP form above the event content. Let me know if that doesn’t do the trick for some reason and we can go from there. š
Cheers!
Geoff