Support

Home Forums Event Espresso Premium EE4 Bypass Select Ticket # Page

EE4 Bypass Select Ticket # Page

Posted: May 15, 2014 at 2:20 pm


primaxstudio

May 15, 2014 at 2:20 pm

Is there a setting or way to bypass the select ticket # page and automatically go to entering the registrant information page?

Thanks!


Lorenzo Orlando Caum

  • Support Staff

May 15, 2014 at 2:33 pm

Hello,

If this was skipped, then how would the attendee/registrant pick a ticket?


Lorenzo


primaxstudio

May 15, 2014 at 4:50 pm

Lorenzo, I would like 1 ticket selected…


Lorenzo Orlando Caum

  • Support Staff

May 15, 2014 at 4:54 pm

Hello, I’m not sure I understand where this page is.

If you select a ticket on the single event page is, then you’ll start the registration checkout process right away.


Lorenzo


primaxstudio

May 15, 2014 at 8:52 pm

Lorenzo, if you see a list of events like this page:
http://www.shoptech.com/webinar-e2-sales-webcast/

When you click on the Event you are then prompted to use the pulldown and select number of tickets. I’d like to bypass the select # of ticket option and automatically go to entering their information. is this an option? Otherwise I’ll begin coding this.

thanks!


Lorenzo Orlando Caum

  • Support Staff

May 15, 2014 at 9:06 pm

Hello,

You could add the ticket selector shortcode on that page (one for each event). An example is in the Help & Support tab.


Lorenzo


primaxstudio

May 15, 2014 at 9:39 pm

thanks!


Lorenzo Orlando Caum

  • Support Staff

May 15, 2014 at 9:52 pm

You are welcome!


Lorenzo


primaxstudio

May 16, 2014 at 7:31 am

I added the shortcode as you recommended.

[ESPRESSO_TICKET_SELECTOR event_id="915"]

However, this still shows the pulldown option to select # of tickets. I’m trying to not display the pulldown and select 1 ticket automatically when the user clicks register.


Lorenzo Orlando Caum

  • Support Staff

May 16, 2014 at 8:14 am

Hi!

Go to each of those events in the Event Editor. Then toggle advanced options on the tickets by clicking on the gear.

Set the minimum and maximum to 1 and then save changes to the event.

Then you could use some jQuery like this to remove the 0 option:

<script>
jQuery(document).ready(function(){
jQuery("#ticket-selector-tbl-qty-slct-915-1 option[value='0']").remove();
jQuery("#ticket-selector-tbl-qty-slct-918-1 option[value='0']").remove();
});
</script>

The snippet above will do that for the two ticket selectors on your site.

This version will remove it for all ticket selectors for all events:

<script>
jQuery(document).ready(function(){
jQuery(".ticket-selector-tbl-qty-slct option[value='0']").remove();
});
</script>


Lorenzo

The support post ‘EE4 Bypass Select Ticket # Page’ 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