Posted: 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! |
Hello, If this was skipped, then how would the attendee/registrant pick a ticket? — |
|
|
Lorenzo, I would like 1 ticket selected… |
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, if you see a list of events like this page: 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! |
Hello, You could add the ticket selector shortcode on that page (one for each event). An example is in the Help & Support tab. — |
|
|
thanks! |
You are welcome! — |
|
|
I added the shortcode as you recommended.
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. |
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> — |
|
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.