Search Results for 'booking form'
-
Search Results
-
Hello,
I think i found a bug. When you want to book tickets on an event detailpage, and you are logged in, there is a line that says “is this not you ? LOGOUT” But the entire form is inside the Logout a tag. I don’t think this is correct is it ?
I removed the following code as a quick solution.
The code is inside class-eo-booking-form-view.phpif( is_user_logged_in() ){ $current_user = wp_get_current_user(); $html .= sprintf( '<div class="eo-booking-notice-logged-in %s">
%s
</div>', esc_attr( $this->form->get_form_notice_classes() ), sprintf( __( 'You are logged in as %s. Not you?', 'eventorganiserp' ), $current_user->user_email, wp_logout_url( get_permalink() ) ) ); }-
This topic was modified 11 years, 1 month ago by
Indie Group.
-
This topic was modified 11 years, 1 month ago by
Indie Group.
Hi,
there are a few things particularly I’d like to change about my booking section (and you may want to consider this as a feature request as well, but I need to change these things ASAP so for now I just need to know how):
- I would like to add a cancel booking button, given the user has already booked an event
- I Would like only to show the Book button if the user has not booked the event
I actually ended up answering the first thing myself, but am posting the answer for anyone else:
- Look in event-organiser-pro/templates/eo-booking-form.php and near the bottom (div with class eo-booking-purchase-row) is where you want to add the check for if they are booked. I used the following (PHP) code:
$bookings = eo_get_bookings(array( "status"=>"confirmed","event_id"=>get_the_ID() )); $attendees = array(); foreach($attendees as $attendee): $attendees[] = $attendee->post_author; endforeach; if(in_array(get_current_user_id(),$attendees)):`
//etc...
But how do I create a booking cancellation button?
-
This topic was modified 11 years, 1 month ago by
Gabriel David. Reason: Formatting code
Hi Stephen,
For the booking form, I’d ideally like the user’s Last Name to be mandatory. Also, I’m including the user’s phone number (which I would also prefer to be mandatory) among the custom fields, but I feel it looks a bit odd for that field to be separated from all the other user info at the top of the form by the ticketing section. It would be nice if the phone field could sit beneath the email field.
Is there any way these changes can be accomplished without major surgery?
Thanks,
Suzanne
http://aim.openairwebdesign.com/events/event/mindfulness-meditation-basicsHi,
I am trying to figure out how to get a list of attendees for a specific event, but I can not figure out the information architecture of your booking system in MySQL
Hello,
in the land of wordpress event plugin there is no absolut solution ! All your competitor are missing important “details” like these ones:
the 3 most important thing missing almost evrywehere are :
1) is it possible to have conditionnal field in the booking form (like with gravity form) ?
2) is it possible for a buyer to buy a ticket as a gift for someone else ?
3) is it possible to connect to woocommerce ?My actual website is doing this (exept woocommerce) but I would like to do it with wordpress because I can use a lot of other feature I don’t have with that old site.
Let me know and thanks for your answer.
Thanks for your answers
Topic: Registrant questions
So far I am very impressed – I especially love the Demo feature! I think this will be replacing 3-4 different plug-ins that I have been using to get the function I need.
I still have some questions:
1) I need to gather basic information about those registering for class (Name, email, phone, etc) I cannot see where to do this.
2) I also like to auto-add registrants to MailChimp – again, not seeing how to do this.
3) What specifically are the differences in the Personal vs Business license? If I have a business, but only one site which do I want?
4) While it is not my first preference, I do get people who want to book directly (with cash). Can I manually add them? so I have all registrations in one place?
Also I want to double check –
“Cap booking at X places” – means how many tickets one individual can buy, while”spaces” for event is how many tickets total to sell – right? -
This topic was modified 11 years, 1 month ago by