Hello
I run multiple events each week and I need to be able to distinguish and identify/download all registered users for each event.
Can I make a duplicate of a form or do I need to create one each time?
Many thanks

Tina McCarthy
You can’t duplicate a booking form, but you can use it for more than one event.

Stephen Harris
Thanks for your reply Stephen.
Do you know if there’s a way I can change the generic message that says “Thank you for registering”?
Thanks

Tina McCarthy
Yup, that message appears when a booking is free, you can change it with the following code:
add_filter( 'eventorganiser_pro_get_option_booking_complete_message_free', 'my_booking_complete_message' );
function my_booking_complete_message(){
return '...';
}
(That would ideally go in a ‘utility plug-in’, but also works in your theme’s functions.php)

Stephen Harris
Thanks Stephen,
Sorry one other question – when the user registers for an event, do they get a confirmation email? At the moment the tickets are coming to me.

Tina McCarthy
Hi Tina,
When payment is confirmed they get an e-mail. In the case where you are using a payment gateway such as PayPal or Stripe, then this is almost instantaneous (or if the event is ‘free’). If there is an amount to be paid and ‘offline’ is selected as the payment method, then an e-mail is only sent out when the booking is confirmed. However, if you require an e-mail to be sent immediately after an offline booking is made, there is this tutorial that achieves that: http://wp-event-organiser.com/blog/tutorial/sending-an-email-after-an-offline-booking/

Stephen Harris