Remove the Interested Option from the RSVP Form
This help doc explains how you can use a custom template to remove the "interested" option from your RSVP events.
Creating a template
-
Scroll down to the first sharing method, Event landing page. Create a custom event landing page template by clicking Custom Templates in the app and clicking + New Template. Add a name for the template.
Removing the Interested option
-
Copy the following code snippet to paste into your template:
<div class="row button-register-t1"> <input type="button" value="RSVP" class="buttonregister" /> </div> <div class="row rsvpformwrap"> <div class="rsvpform" id="rsvpform-wrap"> <form id="rsvpform" data-mode="{{data-mode}}" data-rsvp-limit-reached="{{rsvp-limit-reached}}"> <input type="hidden" name="event_id" id="event_id" class="event_id" value="{{event-id}}" /> <input type="hidden" name="user_edit_id" id="user_edit_id" class="user_edit_id" value="{{user-edit-id}}" /> <div class="register-t1"> <div class="sec-t1 elm-rsvp-intro"> <div class="hed"> <p>Register</p> </div> <div class="des"> <p>Please fill out the information below to register for the event.</p> </div> </div> <div class="interest-t1 elm-rsvp-response"> <input type="hidden" name="attending" value="{{user-attending-system}}" id="attending" class="attending" /> <ul> <li class="going option" data-value="1"><span class="lblgoing">Going</span><i class="material-icons"></i></li> <li class="maybe option" data-value="2"><span class="lblmaybe">Interested</span><i class="material-icons"></i></li> <li class="notgoing option" data-value="3"><span class="lblnotgoing">Can't go</span><i class="material-icons"></i></li> </ul> </div> {{rsvp-form-elements}} <div class="submit-t1"> <input type="submit" value="RSVP" data-register="RSVP" data-save="Save" class="submit" /> </div> <div class="privacy" style="display:none;"> <div class="info"> <p>I have read the <a href="/privacy" title="" target="_blank">Privacy Policy</a> and agree that AddEvent may <a href="#" title="" class="shareexp">share my information</a> with the event organizer.</p> </div> <div class="expl"> <p><strong>Information shared with event organizer</strong><br />When registering for this event, we provide the information entered to the event organizer so they can manage the event. If you do not want the event organizer to have this information, please do not proceed with your registration. Please review our <a href="/privacy" title="" target="_blank">Privacy Policy</a>.</p> </div> </div> </div> </form> </div> <div id="confirmation-going" class="confirmation-t1 confirmation-going"> <div class="check"></div> <div class="head-t1"> <p>Confirmed.</p> </div> <div class="desc-t1"> <p> We've sent a confirmation email to your email address. Be sure to check your junk folder in case you haven't received the confirmation. </p> </div> {{block:button}} </div> <div id="confirmation-interested" class="confirmation-t1 confirmation-interested"> <div class="check"></div> <div class="head-t1"> <p>Confirmed.</p> </div> <div class="desc-t1"> <p> We've sent a confirmation email to your email address. Be sure to check your junk folder in case you haven't received the confirmation. </p> </div> {{block:button}} </div> <div id="confirmation-rsvp-changed" class="confirmation-t1 confirmation-rsvp-changed"> <div class="check"></div> <div class="head-t1"> <p>Thank you!</p> </div> <div class="desc-t1"> <p> Your changes have been saved. Thanks for keeping us updated. </p> </div> </div> </div>
-
Paste the block tag into line 101 (if you have not previously edited your custom template).

- Once you have pasted the
{{block:rsvpform}}
tag, you will remove the Interested line 129 (if you have not previously edited your custom template).

- Then, scroll down to remove the Confirmation: when user is interested section.

- Name your template if you haven't already, click Save or Createthen assign your template to your event on the event page.

Your event landing page should look like this:

Watch this tutorial!
Updated 8 days ago