Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Added field on booking pageWhat is the complete definition of your custom field?
Forum: Plugins
In reply to: [Events Made Easy] shortcode to auto update past eventsWell, that’s not a bug, but a feature request 🙂
I added these 2 scopes in dev:
this_year–yesterday
YYYY-MM-DD–yesterdayForum: Plugins
In reply to: [Events Made Easy] shortcode to auto update past eventsno reply, marking as resolved
Forum: Plugins
In reply to: [Events Made Easy] Placeholders in Subjects of EmailsNo reply, considering solved.
Forum: Plugins
In reply to: [Events Made Easy] Weekly Course, 10 appointments, starting Feb, April, JuneThe way I do it: create 1 event for the first day with all rsvp etc …, then create recurrent events on specific dates and link the RSVP part to the first event.
Forum: Plugins
In reply to: [Events Made Easy] Placeholders in Subjects of EmailsWhich placeholder are you using where (which setting, mail type …)?
Based on the screenshot, I see only _PERSONLASTNAME , which is missing the initial’#’Forum: Plugins
In reply to: [Events Made Easy] Custom fields don’t filter correctlyOk, found the problem. This should fix it:
https://plugins.trac.wordpress.org/changeset/2458458/events-made-easy/trunkForum: Plugins
In reply to: [Events Made Easy] Custom fields don’t filter correctlyThanks for this. I’ll try to reproduce this today (and hopefully come up with a fix). I’m more inclined to think it is due to the checkbox-thing. Do you have the same problem with dropdown fields? And what is your custom field definition (the values you use)?
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] 2 Different booking forms?The bookings have nothing to do with the booking form, but with the event they registered for.
On another page, either use [eme_bookings] with the event id (see https://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_bookings/ ), or use the same shortcode for events as you use on your other page, but use as event template something that doesn’t include the booking form (the #_ADDBOOKINGFORM placeholder).Forum: Plugins
In reply to: [Events Made Easy] Access Events as CPT from Elementor?EME events are not posts, redoing that would cost me a great amount of work so unfortunately unless someone does this for/with me this will not happen.
But creating a layout to your liking and then split it in header/row/footer elements is not that hard (and those can then be used in EME layouts).Forum: Plugins
In reply to: [Events Made Easy] ‘random_id’ used in key specification without a key lengthYou should only see that as a possible issue during plugin update, but I found the source of the problem: random_id is a tinytext and adding an index on those is not supported without adding a key length to the index. I’ve fixed it in trunk now (changed tinytext to varchar(50), and then the index creation works fine) so on the next upgrade of the plugin the index will get created.
Forum: Plugins
In reply to: [Events Made Easy] shortcode to auto update past eventsI think it is more related with the use of your shortcodes and options on that page. Ivm not sure what you mean by”changing the scope” …
Forum: Plugins
In reply to: [Events Made Easy] Question: REST APIsThere is also the possibility to use ical to fetch events, see the shortcode eme_ical_link: https://www.e-dynamics.be/wordpress/eme_ical_link/
Forum: Plugins
In reply to: [Events Made Easy] Question: REST APIsThe plugin has functions you can call, qrcode scanning, a frontend submit form and integrations with many payment providers, but no rest api to create events.
Forum: Plugins
In reply to: [Events Made Easy] Assign User role to memberIf you use the option to create a wp user when someone becomes a member, then you can use the action hook eme_insert_member_action to do whatever you want afterwards. Use the function eme_get_person($member[‘person_id’]) to get the eme person info in your created function and that will give you the wp id too. Then you can do whatever you want with that id.
Now, there are some eme shortcodes that also allow you to hide parts of a page based on membership, see the doc on [eme_if] and the _IS_USER_MEMBER_OF placeholder: https://www.e-dynamics.be/wordpress/conditional-tags/