Removal of Guest Count Line on Event Registration

Options
We have set up an event to capture RSVPs only - a very simple form - however, we are unable to remove the following question on it:

Please specify the number of guests, including yourself, that will attend: 


Where is the option to remove this question within the event set-up process?


Thank you,

Shelley Holloway

RMHC of Central Florida


 


 
Tagged:

Comments

  • Shelley Butler:

    We have set up an event to capture RSVPs only - a very simple form - however, we are unable to remove the following question on it:

    Please specify the number of guests, including yourself, that will attend: 


    Where is the option to remove this question within the event set-up process?


    Thank you,

    Shelley Holloway

    RMHC of Central Florida


     



    ​You would need to access the Message Catalog under Setup/Product Configuration/Message Catalog. This is where the default labels are held. You can change this label to reflect whatever message you want but be aware that this is a global message and it will be reflected on all like events in your system. We changed ours because we did not like this for RSVP events either.

  • You can hide it with some CSS:


    Edit your event > navigate to step 5 "Configure RSVPThis is the current page." > add the following <style> tag to "Message Text" field (make sure it is in plain-text mode)

    <style>

    #RSVPGuestNumberContainer, .appArea label, .appArea input{


    display:none;


    }

    .appArea table label, .appArea table input{


    display:inline;


    }

    </style>





    Those styles rules should cover whether your Registration Page Layout is modern or classic.
  • Romany Nassief:

    You can hide it with some CSS:


    Edit your event > navigate to step 5 "Configure RSVPThis is the current page." > add the following <style> tag to "Message Text" field (make sure it is in plain-text mode)


    <style>

    #RSVPGuestNumberContainer, .appArea label, .appArea input{


    display:none;


    }

    .appArea table label, .appArea table input{


    display:inline;


    }

    </style>





    Those styles rules should cover whether your Registration Page Layout is modern or classic.

    You can adjust it by page/form.

    You can adjust it by page/form on the CLASSIC event registration forms.  Open the part.  Click on the Helplets tab. There are 5 steps in the screen drop down list, you can remove or edit the message for each of the steps.

  • Thank you!
  • Thank you!
  • Thank you!
  • Pat Morrison:

    Romany Nassief:

    You can hide it with some CSS:


    Edit your event > navigate to step 5 "Configure RSVPThis is the current page." > add the following <style> tag to "Message Text" field (make sure it is in plain-text mode)


    <style>

    #RSVPGuestNumberContainer, .appArea label, .appArea input{


    display:none;


    }

    .appArea table label, .appArea table input{


    display:inline;


    }

    </style>





    Those styles rules should cover whether your Registration Page Layout is modern or classic.

    You can adjust it by page/form.

    You can adjust it by page/form on the CLASSIC event registration forms.  Open the part.  Click on the Helplets tab. There are 5 steps in the screen drop down list, you can remove or edit the message for each of the steps.

     

    Pat, I'd love to see use this solution, but I'm confused - could you elaborate on what you mean by "Open the part", first of all - which step in Events set up are you referring to here? And, where do I find the "Helplets" tab - I've never seen anything labeled in that way!


    Thank you!

    Gurukarm

  • Romany Nassief:

    You can hide it with some CSS:


    Edit your event > navigate to step 5 "Configure RSVPThis is the current page." > add the following <style> tag to "Message Text" field (make sure it is in plain-text mode)


    <style>

    #RSVPGuestNumberContainer, .appArea label, .appArea input{


    display:none;


    }

    .appArea table label, .appArea table input{


    display:inline;


    }

    </style>





    Those styles rules should cover whether your Registration Page Layout is modern or classic.

     

    When I use this code on my RSVP Plain Text Editor, it does remove the "number of guuests including yourself" question, but it is also removing my "Submit," "Reset," and "Cancel" buttons. Any suggestions on what may be happening? 



    Thanks! 

  • I would also like to use this code but do not want to remove the "submit" button.  
  • Gwendolyn Chambers:

    I would also like to use this code but do not want to remove the "submit" button.  

    Here is updated styles to use
    <style>

    #RSVPGuestNumberContainer, .appArea label, .appArea input{

    display:none;

    }

    .appArea table label, .appArea table input, .appArea input.Button{

    display:inline;

    }

    </style>

  • Romany Nassief:

    Gwendolyn Chambers:

    I would also like to use this code but do not want to remove the "submit" button.  

    Here is updated styles to use
    <style>

    #RSVPGuestNumberContainer, .appArea label, .appArea input{

    display:none;

    }

    .appArea table label, .appArea table input, .appArea input.Button{

    display:inline;

    }

    </style>

     

    Here as well is an alternate method provided to me by a BB developer:
    Locate your event>click "Edit">go to Step 7. Include Questions>click "Add a Question">choose Caption>on Step 3 (type of Question)

    Switch over to use Plain Text and input the following:


    <style type="text/css">
    label[for="rsvp_num_guests"] {
    display: none;
    }
    #rsvp_num_guests {
    display: none;
    }
    #rsvp_num_guests p {
    display: none!important;
    }
    </style>


    exactly as is and click Finish>Save.

    Make sure this question appears at the top (#1) position in your list of questions.

    I've used this method several times now with success.

  • The alternative code in the Question section is not working for me. Working for anyone else?


    Kim


  •  


    Joined: 12/10/09



     


     


     


     


     


     


     


     


     


     


     


     


     


     


     


     


     


     


     


     


     


     





    Re: Removal of Guest Count Line on Event Registration

    Posted by Romany Nassief on Oct 21, 2018 5:47 am

    Gwendolyn Chambers: I would also like to use this code but do not want to remove the "submit" button.  

    Here is updated styles to use
    <style>

    #RSVPGuestNumberContainer, .appArea label, .appArea input{

    display:none;

    }

    .appArea table label, .appArea table input, .appArea input.Button{

    display:inline;

    }

    </style>





    This isn't working either.


    Kim

Categories