• 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)
Viewing 1 replies (of 1 total)
  • The topic ‘Add Organizer Email/Phone to Tickets’ is closed to new replies.