jcbov
Forum Replies Created
-
hello,
we’ve found a solution, thanks for the hint. Here is the modyfied code
‘ <?php
$guest_bookings = get_option(‘dbem_bookings_registration_disable’);
$guest_booking_user = get_option(‘dbem_bookings_registration_user’);
foreach( $EM_Bookings as $EM_Booking){
if($EM_Booking->status == 1 && !in_array($EM_Booking->get_person()->ID, $people) ){
$people[] = $EM_Booking->get_person()->ID;
echo ‘- ‘. $EM_Booking->get_person()->get_name(). ‘ ‘ .$EM_Booking->get_person()->phone .’
- ‘. $EM_Booking->get_person()->get_name(). ‘ ‘ .$EM_Booking->get_person()->phone .’
‘;
}elseif($EM_Booking->status == 1 && $guest_bookings && $EM_Booking->get_person()->ID == $guest_booking_user ){
echo ‘‘;
}
}
?>’may help someone else,
best regards
Thank you for your answer,
maybe could you be a little more specific since my skills in php are limited!
Forum: Plugins
In reply to: [FG Joomla to WordPress] seminar bookings to events manager bookingsthank you, for your answer.
I’ll keep in touch with you in case i need it!Hello, i fixed it…
that was a fixed position with class used by the plugin and foundation framework.Hello,
you were right! back to default theme my bookings content goes right into the page content. so how do i fix this conflict with the_content filter?
thank you for your time!Hello,
unfortunatly not, I,m developping on localhost.
but i was talking about the page my bookings on Settings > Pages > Supplementary Pages > page my bookings. Which once selected display a list on top of my bookings page (front-end), i want this list to be displayed in the content of the page.
Hope it helpyou to see what i mean, if not is there a way to send your a screenshot?
thank you very much
Thank you!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] bookingbuttonHello again,
I’ve tried as explained, but when I add #_BOOKINGBUTTON, it goes in the tooltip. What I need is to give the possibility to registered users to see if an event is bookable when viewing the monthly Fullcalendar, without having to mouse over the event.
As well for the state of the event ( red for fully booked – green foraall places left – orange for 1 place left), without having to mouse over the event.
Is there a way to retrieve it via a jquery script an add a css class for each state in the title (in the fullcalendar view) ?
thank you for your time,
jc