I have a few questions about the Event Cart:
1. Can I change the link for “Return to Event List” to be something different? I want to redirect to my calendar.
2. If I add an event to my cart then go back to the same page to add another time of that same event to my cart, the “Add Event to Cart” button becomes “View Event Cart”. How can I stop that from happening?
3. How long does an event ticket stay “reserved” if it is included in someone’s cart? Does it become available again when someone closes the browser or after a few minutes? I was just wondering because I noticed the available ticket count went down after I added it to my cart.
You add that function to a Custom Functions Plugin on your site and set to location you want the link to go to.
2. If I add an event to my cart then go back to the same page to add another time of that same event to my cart, the “Add Event to Cart” button becomes “View Event Cart”. How can I stop that from happening?
That might be confusing for your users, but to do so you need to translate View %s into Add to %s.
Within your `$strings¬ array, you would have something like:
$strings = array(
'View %s' => 'Add to %s',
// Add some more strings here
);
That function can also go within your custom function plugin above.
3. How long does an event ticket stay “reserved” if it is included in someone’s cart? Does it become available again when someone closes the browser or after a few minutes? I was just wondering because I noticed the available ticket count went down after I added it to my cart.
The ticket is reserved for 1 hour which is the default session lifespan.
You can reduce that value, but not that if a user selects a ticket and does not finish in the time you have set they will lose their registration so we recommend leaving it as is.
Viewing 1 reply thread
The support post ‘Event Cart Questions’ 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.
Support forum for Event Espresso 3 and Event Espresso 4.