• i have added a custom attendee meta fields in the checkout form and i fetch each guest’s details in the ticket template using the below method:

    {# Show guest details based on the ticket position #}
    {% set guest_position = TICKET.order_item_pos %}
    {% set guest_name = ORDER.get_meta(‘Guest ‘ ~ guest_position ~ ‘ Full Name’) %}
    {% set guest_phone = ORDER.get_meta(‘Guest ‘ ~ guest_position ~ ‘ Phone’) %}
    {% set guest_email = ORDER.get_meta(‘Guest ‘ ~ guest_position ~ ‘ Email’) %}

    {% if guest_name %}
        <br><b>Guest:</b> {{ guest_name|escape }}
        <br><b>Phone:</b> {{ guest_phone|escape }}
        <br><b>Email:</b> {{ guest_email|escape }}
    {% endif %}

    i want to send individual tickets on this respective attendee mail id

    How do I do that?

    The page I need help with: [log in to see the link]

  • You must be logged in to reply to this topic.