- This topic has 4 replies, 2 voices, and was last updated 7 years ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › Show the seats booked in a multiseat event in the RSVP email
Tagged: multiseat, rsvp email
I am not a total newbie with this but I can’t get the seats booked to show in the RSVP email.
I have built a table and tried various options #_RESPSEATS, #_seats #respspaces etc but they aren’t working what tag should I be using to show the number of seats booked for the prospective time slot?
`<table>
<tr><td colspan=”2″><strong>Option 1: workshop only</strong></td></tr>
<tr><td>12pm-2pm</td>
<td>#_RESPSEATS{1}</td></tr>
<tr><td>2pm-4pm</td>
<td>#_RESPSEATS{2}</td></tr>
<tr><td>4pm-6pm</td>
<td>#_RESPSEATS{3}</td></tr>
</table>
The notation #_RESPSEATS{1} etc … is for multiprice events, not for multibookings.
Read carefully the mail-section here:
http://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_add_multibooking_form/
Hi Franky
Thanks for the response.
In my registration form this is the corresponding code:
<strong>Option 1: 2 Hour Creative workshop</strong>
<div class="clear">
</div>
<div class="formlabelxmas">12pm - 2pm</div>
<div class="forminputxmas">#_SEATS{1}</div>
<div class="formlabelxmas">2pm - 4pm</div>
<div class="forminputxmas">#_SEATS{2}</div>
<div class="formlabelxmas">4pm - 4pm</div>
<div class="forminputxmas">#_SEATS{3}</div>
essentially there’s multiple ticket options and I am attempting to show the number of seats selected by the user from the seats{x} dropdown in the RSVP email.
Am I approaching this wrong? I wanted a single event with multiple options instead of making several events that would be confusing.
Ok, that is not a multibooking event, but just a normal multiprice event (your event does have multiple prices, no?).
Check out: http://www.e-dynamics.be/wordpress/category/documentation/7-placeholders/7-4-rsvp-mails/
You need to use #_RESPSPACES{1}, not #_RESPSEATS{1}
Thanks Franky! 🙂