This question was previously answered — for Woocommerce.
Now I’d like to do the same thing (have users stay on the calendar page which lists many events for a festival) and let them add to their cart without being whisked away to the cart each time.
The solution for wootickets was to comment out the form action
<form <?php /*action=”<?php echo esc_url( $woocommerce->cart->get_cart_url() ) ?>”*/ ?> class=”cart” method=”post” enctype=’multipart/form-data’>
But the eddtickets form includes other actions and when I comment the whole thing out, nothing gets added to the cart!
Can someone help with exactly how to modify this line:
<form action=”<?php echo esc_url( add_query_arg( ‘eddtickets_process’, 1, edd_get_checkout_uri() ) ); ?>” *class=”cart” method=”post” enctype=’multipart/form-data’>
thanks!