- This topic has 4 replies, 3 voices, and was last updated 12 years, 7 months 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 … › Register link for events list
Tagged: Event List, registration, RSVP
Is there a way to have a link to register to go along with events in event lists?
We have some events that people can register for and some they cannot. It would be useful if we could indicate which ones people should click-through for to register.
Thanks.
You can do that with a conditional statement and the booking form, as I do:
[events_if tag='#_IS_RSVP_ENABLED' value='1'] #_ADDBOOKINGFORM [/events_if]
The form just appears when it’s appropriate, and disappears when it’s not.
The area where I have the list is small, and there isn’t room for the full form. I was hoping there was a way to just have “Register Now” show up, and link to the corresponding single event page.
Then do so, you are free to create any link you want using any of the available placeholders:
[events_if tag='#_IS_RSVP_ENABLED' value='1'] <a href="#_EVENTPAGEURL">Register here</a> [/events_if]
Thanks. I’ll give it a try.