Support

Home Forums Event Espresso Premium Split: Change Registrant for Event – Multiple Registrants – "Create Contact" Button

Split: Change Registrant for Event – Multiple Registrants – "Create Contact" Button

Posted: July 11, 2019 at 7:44 am


Nancy

July 11, 2019 at 7:44 am

Is there a way to ensure that the option “to use Attendee #1 ” information does not appear on the forms. We would prefer to ask for all details up front.


Josh

  • Support Staff

July 11, 2019 at 8:17 am

Hi,

I split your reply into a new topic because it’s a different question that has its own answer, and we try to keep the forums organized by topic.

What you can do is add the following code to your site:

add_filter(
 'FHEE__EEH_Template__locate_template__full_template_paths',
 'my_copy_attendee_info_template_do_not_load',
 10,
 2
);
function my_copy_attendee_info_template_do_not_load(
 $full_template_paths,
 $file_name
) {
  if( $file_name == 'copy_attendee_info.template.php') {
    return;
  }
  return $full_template_paths;
}

You can add the above to a functions plugin or, if available, into your WordPress child theme’s functions.php file.

The support post ‘Split: Change Registrant for Event – Multiple Registrants – "Create Contact" Button’ 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