Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Overbooking beyond maximum guest numbersI still need to test this, but this change might help (fixed to 5 minutes to consider “young” pending bookings as occupied):
https://plugins.trac.wordpress.org/changeset/2721421/Forum: Plugins
In reply to: [Events Made Easy] Overbooking beyond maximum guest numbersWell, maybe it is possible to count”free” pending places as occupied within the first 5 minutes after booking too … Need to check the SQL hete first 🙂
I’m marking it back as not resolved until I get a chance to look at that.Forum: Plugins
In reply to: [Events Made Easy] Viewing custom fields on the front end?If it is a field of type rsvp, then it can only be shown per booking (so not per attendee). If you want a field per attendee, create a field of type “person”.
Showing custom fields in the frontend is done by using #_FIELD, see https://www.e-dynamics.be/wordpress/people-placeholders/Forum: Plugins
In reply to: [Events Made Easy] Overbooking beyond maximum guest numbersFurther analysis:
– when a booking is pending and the user comes to pay, it is always possible to do so. I’ll check for available seats excluding the booking being paid for the next time
– when several pending bookings are in progress of being paid for (via their payment gateway), those bookings will go through. ==> while I can check for available seats after the payment arrives, it is very difficult to explain to someone their booking was first ok, then *after* payment the booking is refused … I’d need to refund then, and not all payment gateways accept refunds so fast. So this last scenario is currently staying as is. Unfortunately I believe that scenario is your case here, no?Forum: Plugins
In reply to: [Events Made Easy] Overbooking beyond maximum guest numbersOk, it is possible that “Consider pending bookings as available seats for new bookings: y” is the problem. The user booked, booking is set as pending and then the payment happens. I need to check the code, but it is possible that at moment I currently no longer check for free seats. Let me see …
Forum: Plugins
In reply to: [Events Made Easy] Overbooking beyond maximum guest numbersI check he number of available seats at booking time (even after they press the submit button), so the possibility to get over the limit is next to 0.
However, maybe some other condition arrises here … because you talk about payment too. So: what are the settings for your event? Do you work with pending seats, auto-approval after payment, … ?Forum: Plugins
In reply to: [Events Made Easy] Map in widget gets on top of menuGood to hear. Now let’s hope lefletjs continues the dev at some point, my heart is with them (see https://leafletjs.com/ )
Forum: Plugins
In reply to: [Events Made Easy] Map in widget gets on top of menuI’m the EME dev, not a CSS guy …
But if I set the z-index in my browser console to 1 for the class bd-container-inner, it works fine for me.Forum: Plugins
In reply to: [Events Made Easy] Map in widget gets on top of menuIndeed, increasing the z-index for your menu div (to 1) already solves it.
Forum: Plugins
In reply to: [Events Made Easy] Use external url for single events – open in new tabIf you set the option “Use external url for single events or locations?” then this is currently not possible. It would require changes to the code, so I’ll classify that as a feature request for now. I’ll take a look at it though, because maybe I’ll do that by default.
However, if you just want to use the value of the external url, you can build your own links with it (placeholder #_EXTERNALURL returns the url, so you can build your own html a-tag with it).Forum: Plugins
In reply to: [Events Made Easy] Ask for user confirmation after a bookingThanks 🙂
So: your problem is solved then?Forum: Plugins
In reply to: [Events Made Easy] Ask for user confirmation after a bookingSee the second part in my last remark
Forum: Plugins
In reply to: [Events Made Easy] Ask for user confirmation after a bookingWhat is the mail template used for sending that mail? It should contain the link #_PAYMENT_URL (that link is used for both confirmation and payment in fact).
Edit: there was a bug where this url was empty if online payment for the event was not activated. This changeset fixes it (will be in the next version) too:
https://plugins.trac.wordpress.org/changeset/2714406/
- This reply was modified 4 years ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] Map in widgetOlder locations (without a defined slug) get a number added, editing that location adds a slug and thus fixes it. But I can’t reproduce your problem even with older locations and [eme_events] in a widget (if eme_events doesn’t limit to a location).
Forum: Plugins
In reply to: [Events Made Easy] Map in widgetOk, I think I figured it out. It is due to the fact that a location id can be both an integer and a string (old and new), but it being a string will of course not work during a mysql search (need to get the location id then first).
This should fix that:
https://plugins.trac.wordpress.org/changeset/2713690/