KramBie
Forum Replies Created
-
A great also another solution. Good to know that another selector is also working.
Thank you once again, much obliged you took a look.
(For safety reasons I removed the link know).Too bad, the selector
.event .featured-imagedoesn’t work on my page.A link to a single event page is: … <link removed>.
Much obliged that you are willing to look 🙂Don’t forget to try on a different IP address as it might be that your IP address is blocked. Then other browsers, computers, etc. at your place won’t work either. Try it on a computer of a friend in a other place.
Well, I just tried myself to send the form and it worked. I send them the link to this topic so maybe they can contact you. But I it works for me, then it might be worth trying another computer and IP address. Maybe you are blacklisted for some reason.
I am sorry you cannot login to your pro account. I am still on the free version so I cannot try it myself. Few suggestions:
- Probably the same result, but try the pre-sale question.
- Have you already tried to log in via https://eventsmanagerpro.com/gopro/?
- In your order confirmation emails from 2018 there might be an email address
- This reply was modified 1 year, 9 months ago by KramBie.
Not for the same ticket. However you can create multiple tickets which are only available for logged in users which you can further specify for which role. So if you create multiple tickets each with a different pricing and only visible for a specific role you get what you need.
I just tested it again and it worked for me. See these settings:

OK, this was really simple. Sometimes I thinking too hard 🙂
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Field for OrganizerI didn’t find a list of the available icons in the documentation but there is a css file that gives an oversight, see: /wp-content/plugins/events-manager/includes/css/events-manager.css.
If you download this file you can find a kind of list.Beware: Don’t overwrite the original file in this directory, that might break your installation.
OK that makes sense. I modified the new code a bit because I like to get all ticket names if a person has ordered more than on ticket in one booking:
add_filter('em_event_output_placeholder', 'my_em_ticket_string', 1, 3);
function my_em_ticket_string($replace, $EM_Event, $result) {
if ($result == '#_TICKETSTRING') {
$replace = '';
$EM_Bookings = $EM_Event->get_bookings();
if (count($EM_Bookings->bookings) > 0) {
foreach ($EM_Bookings as $EM_Booking) {
if ($EM_Booking->person_id == get_current_user_id()) {
$ticket_name = "";
foreach ($EM_Booking->get_tickets() as $EM_Ticket) {
if ($ticket_name == "") {
$ticket_name = $EM_Ticket->name;
} else {
$ticket_name = $ticket_name . ', ' . $EM_Ticket->name;
}
}
return $ticket_name;
}
}
}
return "";
}
return $replace;
}Thank you for pointing out that possible PHP error. I am not a very experienced PHP programmer.
BTW The limitation if a user has ordered multiple tickets with the same name it only shows that once is no problem. I need to see if the user has ordered different tickets for the same event.This one works also, but the version of yesterday was already fine. I guess the version of today is slightly faster in single ticket modus. Thanks, once again.
I misunderstood what you meant with “only show avail dates”. I assumed not bookable events which is what bookings=1 does.
I just tested it and I confirm the scope ‘this-week” does nothing on calenders. However on lists it is working. So probably
[events_calendar bookings=1 scope="future"]is your best choice.Yes it works 🙂
Thank you once again.No it is also in the free version. In the Event List/Archives section you have to scroll down to the subsection “General settings” and there is the item “Include cancelled events”.
I think this will do the trick:
[events_calendar bookings=1]