Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-sales domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the better-click-to-tweet domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-amazon domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-stats domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Registrant info per attendee | Event Espresso - Staging Server

Support

Home Forums Pre-Sales Registrant info per attendee

Registrant info per attendee

Posted: August 1, 2013 at 8:00 am

Viewing 1 reply thread


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

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>
Viewing 1 reply thread

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 - Staging Server