Search Results for 'booking form'
-
Search Results
-
Hi Stephen,
One of my clients would like to be able to set separate booking notification addresses by event (or at the very least, by booking form). This is because they have a number of different event organisers who would like to receive notifications.
Hope that makes sense…
Andrew
Topic: add on mechandize
Hi great plugin just wondering what would be the best way to add on mechanise say a t-shirt into the booking form ..at piont of sale
– does it play well with other ecommerce pluggins like woo commerce?or is it easer to hard code that into the booking form with html..
pic of t-shirt> size : select button – price.. how would I add an extra fixed cost object into that form.. mm
Topic: Booking form
Hi,
Thank you in advance for your support. I have a few questions about the booking form:
1. At the moment I have many customers who enter their details into the booking form and then exit the gateway without confirming their payment. The problem is that their bookings are registered as pending and once they return on the website again the booking form only notifies them that they have already made a booking but does not give an option to pay for the pending bookings. I was wondering how could I render a booking cart before the booking form?- The gateway I am using requires valid telephone numbers and post codes – is it possible to add data validation for these particular fields before the user is allowed to submit the booking?
Kind regards,
ViliusThis one is crucial. We allredy had customers calls asking us how about the tickets pricing because they are only visible when cliked on the datepicker. This may be the right programmers-logic but not the expected behaviour. Usually tickets are on other websites visible right from the start.
Also it may be confusing to find the right date that can be clicked. We’ve got workshops that reoccur in 3 months – then it’s neccessery to click three times forward to find that date. This is to much for the small brains of the most customers.In the moment we use this workaround that performs this trick with jquery. It’s placed in our child theme in eo-booking-form.php :
//-------------------------------------------------------------------------------------------------- // Get the next occurrence date and click on it via jQuery to reveal tickets an pricing info // Author: Augenpulver // ------------------------------------------------------------------------------------------------- $this_event_id = $booking_form->get('event_id'); $next_event_occ_date = get_closest_occurrence_of($this_event_id); if($next_event_occ_date) { echo " <script type='text/javascript'> jQuery(function() { setTimeout(function(){ jQuery('#eo-booking-occurrence-picker').datepicker('setDate', '{$next_event_occ_date}'); jQuery('#eo-booking-occurrence-picker .ui-state-active').click(); }, 1000); }); </script> "; } else { if(current_user_can( 'manage_options' )) { $curr_debuginfo = __FILE__.__LINE__; echo " <script type='text/javascript'> console.log('{$curr_debuginfo}'); console.log('Sorry, No next event found for event id {$this_event_id}'); </script> "; } }
And the function:
//-------------------------------------------------------------------------------------------------- // Returns the next occurrence of the current event // Author: Augenpulver // ------------------------------------------------------------------------------------------------- function get_closest_occurrence_of($post_id) { $occur_array = eo_get_the_future_occurrences_of($post_id); if($occur_array) { if($occur_array) { foreach ($occur_array as $value) { $date = $value["start"]; $occur_datelist[] = $date->format('Y-m-d'); } return $occur_datelist[0]; } else return false; } else return null; } // -------------------------------------------------------------------------------------------------
Even if this works very fine it would be great to not be forced to fake around some day to achieve this.