Home › Forums › Calendar Products › Events Calendar PRO › Event Ticket / Event ticket plus / RSVP
- This topic has 5 replies, 4 voices, and was last updated 9 years, 4 months ago by
Reinhard.
-
AuthorPosts
-
November 21, 2016 at 12:57 am #1195202
Reinhard
ParticipantHi I installed events calendar pro and this moment we are using only the standard rsvp ticket option in our event (a license for testing is bought of the pro version of event tickets).
It works fine but the admin do not get an email that someone registered at the event. Where can I set the option to receive an email if someone has registered? Where do I set the email address all the registrations are send to?website is: http://acondistec.com/event/backup-the-future/
Thanks for help
kind regards R.
November 22, 2016 at 11:47 am #1196095Jeff Serani
MemberHi Reinhard!
Excellent question you bring up. This actually was one I encountered myself in the recent month or so. 😉
Fantastic news! An awesome fellow Support genius wrote up a stellar snippet that you can use. What this snippet does is it BCC’s the WordPress admin on all RSVP emails. So if someone goes to your event and RSVPs “Going” – you’ll get the identical email as they do and same goes for anyone who marks “Not Going” for the event.
I just double checked and tested this snippet and it is working great. Here it is (you can add this snippet to your theme’s functions.php file):
function cliff_et_rsvp_bcc_admin_ticket() {
// get site admin's email
$bcc = sanitize_email( get_option( 'admin_email' ) );// set Headers to Event Tickets' default
$headers = array( 'Content-type: text/html' );// add BCC email if it's a valid email address
if ( is_email( $bcc ) ) {
$headers[] = sprintf( 'Bcc: %s', $bcc );
}return $headers;
}add_filter( 'tribe_rsvp_email_headers', 'cliff_et_rsvp_bcc_admin_ticket' );
Please let me know if that helps you out!
Have an excellent day!
November 24, 2016 at 2:13 am #1196918Reinhard
ParticipantHi and thanks. The script is ont working on my wordpress. If I add the script in my header with <script>…</script> I got an error.
It would be great to get this feature in the next version or in Ticket pro which I also installed.Can you tell me how to enable your above script correctly?
What should I do with add_filters?I am not so familiar with scripting.
Thanks and kind regards R
November 25, 2016 at 10:12 am #1197526Jeff Serani
MemberHi Reinhart
No problem at all with the confusion.
You will want to add that filter snippet to your theme’s “functions.php” file at the end of the file. You’ll need to access this theme file most likely through a program such as FileZilla (ftp access) or possibly your hosting’s File Manager.
Your hosting provider might actually be able to help you do this as well or at least help guide you to that file to edit.
Please let me know if that helps point you in the right direction!
December 17, 2016 at 8:35 am #1207315Support Droid
KeymasterHey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.
Thanks so much!
The Events Calendar Support Team -
AuthorPosts
- The topic ‘Event Ticket / Event ticket plus / RSVP’ is closed to new replies.
