Hey @pivotpoint,
Thanks for reaching out! Moving the ticket form is possible, although it unfortunately will require some custom code ??
We have a walkthrough for how to make these code changes for our premium version of Event Tickets Plus, which you can find here: https://theeventscalendar.com/knowledgebase/moving-the-ticket-form/
Now, to make that snippet work with Event Tickets (the free version, and thus the RSVP form), all you would need to do is find the bit of code in that article that looks like this:
$etp_classes = array(
'Tribe__Tickets_Plus__Commerce__EDD__Main',
// 'Tribe__Tickets_Plus__Commerce__Shopp__Main', // As of ETP v4.0 Shopp will generate errors when referenced, if not active. Uncomment this line if you have Shopp Active
'Tribe__Tickets_Plus__Commerce__WPEC__Main',
'Tribe__Tickets_Plus__Commerce__WooCommerce__Main'
);
And make it look like this:
$etp_classes = array(
'Tribe__Tickets_Plus__Commerce__EDD__Main',
// 'Tribe__Tickets_Plus__Commerce__Shopp__Main', // As of ETP v4.0 Shopp will generate errors when referenced, if not active. Uncomment this line if you have Shopp Active
'Tribe__Tickets_Plus__Commerce__WPEC__Main',
'Tribe__Tickets_Plus__Commerce__WooCommerce__Main',
'Tribe__Tickets__RSVP'
);
I hope that helps!
Thanks,
George