Support » Plugin: Event Tickets » Add Organizer Email/Phone to Tickets

  • Resolved mjchelle

    (@mjchelle)


    I have Events Cal Pro and QR Tickets and am trying to edit the Ticket Email to show the Organizers email and address. I’ve followed all the steps on the Knowledge Base and Custom Themes page but don’t know what functions I should be calling.
    My attempt so far has been to add this snippet to the /email.php in my child theme but I am just copying the general layout of the Venue code that shows beside Organizer on the ticket, and guessing at what the Organizer’s email and phone might be called based on ‘view source’ from other pages.

    if ( function_exists( ‘tribe_get_organizer_ids’ ) ) {
    $organizers = tribe_get_organizer_ids( $event->ID );
    }

    $organizer_tel = $organizer_email = ”;
    if ( ! empty( $organizer ) ) {
    $organizer_tel = get_post_meta( $organizer_id, ‘_OrganizerTel’, true );
    $organizer_email = get_post_meta( $organizer_id, ‘_OrganizerEmail’, true );
    }

    Could anyone tell me how to customise the ticket email to show the Organizer’s email and phone number on the ticket where it also shows the name of the Organizer by default.
    thanks.

Viewing 1 replies (of 1 total)
  • Plugin Contributor Juan Aldasoro

    (@juanfra)

    Hi @mjchelle,

    Thank you for reaching out to us. I hope you’re doing well.

    We have an article explaining specifically how to customize the email template, have you checked that out? You can find it in the following link.

    Please let me know how it goes.

    Best,
    Juan.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.