- This topic has 2 replies, 2 voices, and was last updated 8 years, 9 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › RSVP ended message hardcoded?
Tagged: message, rsvp ended, rsvp until
Is the text “Bookings no longer allowed on this date.” hardcoded? I’d like to modify it…
Thanks.
It is hard-coded, but using some conditional tags and checking the value of #_IS_RSVP_ENDED , you can only show the booking form (and thus avoid the message) if not ended:
[eme_if tag='#_IS_RSVP_ENDED' value='1'] my own message [/eme_if]
[eme_if tag='#_IS_RSVP_ENDED' value='0'] #_ADDBOOKINGFORM[/eme_if]
Aha, brilliant! Works well, thanks.