Support

Home Forums Pre-Sales Registrant info per attendee

Registrant info per attendee

Posted: August 1, 2013 at 8:00 am


Andrew McElroy

August 1, 2013 at 8:00 am

Sorry if this has already been answered.

I want to know if it is possible so that if an event registration has 4 attendants that I can enter 4 different sets of attendee info for each attendee on the same registration form?

Can I make some of these questions/fields conditional, i.e. only show this field if the answer above is yes?

Thanks in advance


Josh

  • Support Staff

August 1, 2013 at 8:29 am

Hi Andrew,

With your first question, it depends on whether you’re asking if each set of questions is unique or not. So to clarify, if you’re asking the same set of questions for each of the additional attendees the answer is yes. If it’s a case where you want to display a different set of questions for each additional attendee, it’s not something that Event Espresso can do.

With your second question there isn’t a built-in feature that allows for conditional quesitons. That said, it is possible with a little jQuery to hide/show questions based on the answer of another question. Here is an example code snippet that shows how this can be done:

<script>
jQuery(document).ready(function($){
	
	$("label[for='DROPDOWN_63'],select[name='DROPDOWN_63']").hide(); //the question label and dropdown you want hidden 

	$("select[name='DROPDOWN_62']").change(function(){ //the question that if answered Yes makes the next question display
		var myoptionValue = $("select[name='DROPDOWN_62']").val();
	if (myoptionValue == "Yes") {
		$("label[for='DROPDOWN_63'],select[name='DROPDOWN_63']").show();
	} else {
		$("label[for='DROPDOWN_63'],select[name='DROPDOWN_63']").hide();
	}

	});

});
</script>

The support post ‘Registrant info per attendee’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso