EE 3.1.65 user here, running on WP 3.8. Have the volume discount and multi-event modules running.
We’re trying to sell our Football season’s pack, which as 4 individual games adds up to $70 total, but by buying the “pack”, the customer would get $10 off to total $60. Furthermore, I wanted them to be able to have it default to a quantity of 1 per ticket, and not even require the confirmation in the cart, but simply go from the “add to cart/register” button to entering the personal information and paying.
Set up the events and give them a category (the same one for each).
In the Volume discounts settings have it set up something like this http://take.ms/b7vLd
So in the example I’m using:
Discount based on – Total Dollar Value
Discount Threshold – 70
Discount Amount – 10
Discount Type – Fixed Dollar Amount
Discounts Apply To – here the category for the events has been ticked.
This will result in a $10 discount when enough events form the same category are added to cart so that their combined values reach $70 or more.
To make the dropdowns all say 1, I added this function to the wp-content/uploads/espresso/custom-functions.php
function set_cart_dropdowns_to_one() {
?>
<script>
jQuery('.price_id').val(1);
</script>
<?php
}
add_action('wp_footer','set_cart_dropdowns_to_one');
not even require the confirmation in the cart, but simply go from the “add to cart/register” button to entering the personal information and paying.
Depending on which gateway you are using this might be possible. In PayPal for instance you can set the option “Bypass Payment Overview Page” to Yes and it will automiatically transfer the user from the confrimation page to the payment gateway.
Depending on their connection speed, they may still see the confirmation page while being transferred.
I hope that help, please let me know if you need clarification on anything.
Viewing 1 reply thread
The support post ‘Selling season's pack with discount and redirect to payment page in EE3’ 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.