Event Ticket / Event ticket plus / RSVP

Home Forums Calendar Products Events Calendar PRO Event Ticket / Event ticket plus / RSVP

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1195202
    Reinhard
    Participant

    Hi 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.

    #1196095
    Jeff Serani
    Member

    Hi 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!

    #1196918
    Reinhard
    Participant

    Hi 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

    #1197526
    Jeff Serani
    Member

    Hi 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!

    #1207315
    Support Droid
    Keymaster

    Hey 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

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Event Ticket / Event ticket plus / RSVP’ is closed to new replies.