Support

Home Forums Event Espresso Premium Registration Page (11)

Registration Page (11)

Posted: March 20, 2019 at 8:39 pm

Viewing 2 reply threads


Michael

March 20, 2019 at 8:39 pm

Hello, on the registration page, if the user selects multiple events to register for, the user personal information is located after one of the events, the the rest are listed. Please see screenshot:

https://www.evernote.com/l/APc3Ri7dr9pI3oUW2b_ME5BWpxhzICTiHAc

Can the Personal Information go above all events?

Thanks you.

  • This topic was modified 5 years, 6 months ago by Michael.
  • This topic was modified 4 years, 7 months ago by Garth.


Josh

  • Support Staff

March 21, 2019 at 7:12 pm

It sounds like you want the form to appear before all information about the events. In that case you can use a bit of jQuery to change the order. The following can be added to a plugin/functions.php file.

add_action(
  'wp_enqueue_scripts', 
  function() {
    wp_add_inline_script( 
        'single_page_checkout',
        'jQuery( document ).ready(function($) {
            $(".spco-ticket-info-dv:first")
            .insertAfter(".spco-attendee-panel-dv fieldset:last");
        });'
    );
  },
  11
);


Michael

March 25, 2019 at 11:06 am

Thank you!!

Viewing 2 reply threads

The support post ‘Registration Page (11)’ 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