Franky
Forum Replies Created
-
I added this to the faq-section concerning form tampering.
Forum: Plugins
In reply to: [Events Made Easy] Translation does not workDid you delete the generated events-made-easy-de_DE.l10n.php too ? That one is taken in preference of the mo-file.
Next to that: feel free to create a github pull request with an updated po-file.
Forum: Plugins
In reply to: [Events Made Easy] 3 shortcodes missingThe email-section was written later on, that’s why 😉
Concerning terminology: placeholders is the generic English term to replace something (a placeholder) by something else (value of some sort). In EME the placeholders start with “#_” (most of the time) to be able to correctly find/replace them. The #_ATT placeholders are for event attributes (see the Attributes-section when defining an event). The #_PROP placeholders are for events properties which don’t have own database columns (to avoid needing to create specific placeholders for each, which would cause the code to explode even more). And then there are the old regular placeholders for convenience.
Forum: Plugins
In reply to: [Events Made Easy] 3 shortcodes missingWell, I never imagined people using frontend submit combined with mails, so in fact not every event/location property was accessible using placeholders (an old oversight apparently). This fixes that:
https://github.com/liedekef/events-made-easy/commit/e997b26d7ca57ea9f448d0a1f921df95945d5ae0
Using that changeset, you can use #_PROP{xxx} to access custom event/location properties (identical to #_ATT). For a list of all event/location properties, see the function “eme_init_event_props” in eme_events.php or the function “eme_init_location_props” in eme_locations.php (almost at the top).
Concerning event_contactperson_email_body : that happens to be *not* a property (I was correcting code while writing this post), but can be accessed using #_EVENTDBFIELD{xx} , which in fact allows to access the value of any event column in the DB (I did that so as not to create a placeholder for every field …)
Forum: Plugins
In reply to: [Events Made Easy] 3 shortcodes missingweird, it seems my reply didn’t make it in but the status got set to resolved …
Anyway: the placeholders (not shortcodes) you need to use are event placeholders (not frontend form placeholders). See https://www.e-dynamics.be/wordpress/eme-docs/event-formatting/
Forum: Plugins
In reply to: [Events Made Easy] event start time not required?I assume you’re talking about the frontend submit form? The next version will no longer have this requirement (it was more a legacy thing). See this change:
https://github.com/liedekef/events-made-easy/commit/a11c7ef032ae884efdd08f9b053d59ee167c35ce
Forum: Plugins
In reply to: [Events Made Easy] Event Booking/Payment no longer workingI no longer give support here for the plugin, go to https://github.com/liedekef/events-made-easy and post issues there.
Also, more info when you create an incident there please (logs, browser console errors, php version) and working demo.
Forum: Plugins
In reply to: [Events Made Easy] Email notification after an event is addedI no longer give support here for the plugin, see https://www.e-dynamics.be/wordpress/forums/topic/security-release/
So first update to the GitHub version and post issues there.
Forum: Plugins
In reply to: [Events Made Easy] Event description is displayed as a listI no longer give support here for the plugin, see https://www.e-dynamics.be/wordpress/forums/topic/security-release/
So first update to the GitHub version and post issues there.
Forum: Plugins
In reply to: [Events Made Easy] PaymentsI no longer give support via this forum, please direct all future questions via github.
Also: I just released a new version which fixes a typo, causing your problem.
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Problem with added attributesYou’re not explaining what is no longer working …
First: check if the attribute is actually created in the event when submitting a new event via EMEFS.Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Getting errorno reply, considering solved
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Getting errorThe Frontend Submit plugin can only detect the Events Made Easy plugin if that one is installed in a plugin folder called “events-made-easy”. I assume you chose a different plugin folder name, causing this.
Forum: Plugins
In reply to: [Events Made Easy] Upload image from file or folder on front endWrong forum this time 🙂 This is a question for the EME Frontend Submit plugin.
Anyway, to reply: WordPress prohibits guests from uploading to the media gallery, so that will not work. You can add a custom field in EME of purpose “events” and type “File”, that will allow a file upload to just the event.
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Frontend shortcode is not workingThis is not related to the original question. Next to that: allowing file uploads in the wordpress editor is (while EME sets an option to show the button) still limited to what wordpress allows from the frontend.