Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Error when booking last available placeI’ll check again, but to be sure:
– you have an event with the option to ignore pending bookings (meaning only approved bookings count as “taken” seats)
– you try to pay for a pending bookingCorrect? I’m looking at the code, and I think I found the logic error, but I’ll need to make some tests …
Forum: Plugins
In reply to: [Events Made Easy] Error when booking last available placeThere seems to be a typo, can you check if this fixes it:
https://plugins.trac.wordpress.org/changeset/2770531/- This reply was modified 3 years, 9 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] attendees edit their bookingWhile it might not be a problem for you, it is for me as a programmer. I need to think of all potential issues here …
Concerning your second question: either fill out the frontend form for the older people yourself, or go in the backend list of events and click on “RSVP” for the event you want.
Btw: you *can* change bookings as an admin in the backend of course.Forum: Plugins
In reply to: [Events Made Easy] attendees edit their bookingThis is not possible due to several possible issues:
– what if the event is already full
– what if they already paid for 3 seats and then change to 4
– what if a discount based on number of seats was applied, or early bird discounts
– probably othersSo no: bookings can’t be changed by the booker once made
confirmed as a bug, and fixed in the just released 2.2.93 version
Forum: Plugins
In reply to: [Events Made Easy] Best way to change mebers email adress?If a member is linked to a wordpress user: then in the wordpress profile, otherwise in the eme people section.
Forum: Plugins
In reply to: [Events Made Easy] Users Booking List – eme_mybookingsIf they now show up, that means it is probably a caching issue. Disable your caching plugin (never understood why people use caching plugins for dynamic pages in the first place … a caching reverse proxy is much better in this regard).
Forum: Plugins
In reply to: [Events Made Easy] Payment methods missingConfirmed, when adding Opaya I forgot a closing div-tag. This one-liner fixes it:
https://plugins.trac.wordpress.org/changeset/2759623/then make the first option of your dropdown field empty: add an empty line at the top of the defined options (or start the option list with “||” for a new dropdown field).
Using the current version that is not possible, but see this changeset:
Forum: Plugins
In reply to: [Events Made Easy] Wpml is not compatibleWPML works with different pages per post, which is good for front-end info. But once in the backend, this is much harder to do: how will you configure 1 event for multiple languages if you need to create a new entry for each language? And how to manage the sending of mails/reminders/…, the form submit per language? It’s a nightmare in that manner, and there are many other language plugins each doing it in their own way. For a “simple” event/membership plugin, this is way too difficult to maintain (or be able to link the different events-languages together). EME can detect the WPML language used and show the text of choice if you use the language tags in the doc I gave, that’s it concerning WPML compatibility.
Forum: Plugins
In reply to: [Events Made Easy] Track affiliate sales of event ticketsHum … while the affiliate redirects to your site for the ticket form, once it is on your site it no longer “tracks” of course, certainly not the form submit.
So in fact you could track the showing of the rsvp form, but not the sale (not without extra coding).
One option though, is to create a field of type “hidden”, use that in your form (so it is hidden and not visible to regular users) and use the EME filter eme_field_value_filter to get the value from the url and enter it as a value for the hidden field (and in the backend you can then see the value of that field in the booking overview). See https://www.e-dynamics.be/wordpress/category/documentation/12-hooks-and-filters/ for an example of that.So admittedly it is not a quick and easy thing here …
Forum: Plugins
In reply to: [Events Made Easy] Wpml is not compatiblePlease read the EME doc on multi-lang support:
https://www.e-dynamics.be/wordpress/category/documentation/22-language-support/Forum: Plugins
In reply to: [Events Made Easy] Track affiliate sales of event ticketsTracking affiliate sales comes down to tracking an url, and EME uses regular urls. So if you have a plugin that can track urls (not posts, since events are not posts but in fact a content replacement of 1 page) then you should be good.
Forum: Plugins
In reply to: [Events Made Easy] Membership Stripe paymentI’m releasing the new version now (also including the latest php api code from stripe).