Franky
Forum Replies Created
-
Forum: Reviews
In reply to: [Events Made Easy] Events made extremely complicatedI’m sorry, but “I didn’t even attempt to go through” and “documentation is seriously lacking” without even asking for support/help and then you write this as a review? The documentation is found here: https://www.e-dynamics.be/wordpress/category/documentation/3-installation-and-usage/ (immediately on the “usage” chapter, with even a video explaining the usage). I spend many hours/days keeping it up to date, and I’m always open for suggestions on improving it.
Also, I proud myself on the fact that user don’t need coding skills, that’s why I provide options to change what you like. If clicking on “add new event” is too complicated, then I doubt you find anything good enough for you. I even set reasonable defaults for events, so people can start without changing anything at first …
I wish you the best of luck finding a plugin to your liking.Forum: Plugins
In reply to: [Events Made Easy] Elementor Supportno feedback, marking resolved
Forum: Plugins
In reply to: [Events Made Easy] Elementor SupportEME should not be affected by elementor. But make sure you don’t touch the special EME events page. If in doubt, create an empty wordpress page and use that as EME special events page, see https://www.e-dynamics.be/wordpress/category/documentation/3-installation-and-usage/
I just installed elementor here (nothing else) and my events still show up as expected. Maybe check with elementor on known issues?
I use
add_filter ( 'the_content', 'eme_filter_events_page' );
and elementor uses that filter as well, but with a different priority (so maybe that’s causing you troubles).Forum: Plugins
In reply to: [Events Made Easy] Event + RaumbuchungCustom fields count per booking, not per event.
In your case I suggest you take a look at multiseat/multiprice events. Create an event with multiple seat categories, e.g.:
“20||30”
(meaning 20 seats of price cat 1, 30 seats price cat 2)
and for price you mention the price for each type:
“100||150”
(meaning 100 for a seat of price cat 1, 150 for a seat of price cat 2).
Then also limit the amount of “seats” to book to 1.
To further improve the user experience, you can set the “min allow seat to book” to “0||0” and then set the RSVP to “take attendance”, which will render your “seats” selection as a select box (and not a dropdown).Then you let people book per cat:
Single room: #_SEATS{1}
Double room: #_SEATS{2}
Persons: #_FIELD{customfield_persons}And then ask for info based on amount of persons. The current limitation in EME is that you can have dynamically added fields based on “fixed” fields, but not based on other dynamic fields. While it is possible, I need to check and test this out more; as that would make it easier for you: only show the #_FIELD{customfield_persons} if #_SEATS{2}>0 and only then based on the value of #_FIELD{customfield_persons} ask for extra (repeated) info.
- This reply was modified 4 years, 9 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] Event + RaumbuchungCustom fields contain the values you give them, never unrestricted (if a dropdown)
Forum: Plugins
In reply to: [Events Made Easy] Event + RaumbuchungYou can add a custom field where you ask for “one person room” or “2 persons room”, …
and based on the value show extra fields (called “dynamically added fields”), where you ask for extra info.
So yes, that is possible.Forum: Plugins
In reply to: [Events Made Easy] Payment gateway display orderThe next version will have a new filter “eme_payment_gateways”, which allows you to change the payment gateway array as you see fit (using some php coding of course).
Forum: Plugins
In reply to: [Events Made Easy] Payment gateway display orderSorry but this is currently not possible.
Forum: Plugins
In reply to: [Events Made Easy] Pb when displaying the contact phoneIndeed a small bug. This should fix it:
https://plugins.trac.wordpress.org/changeset/2570127/Forum: Plugins
In reply to: [Events Made Easy] Constant error “error while communicating to server”With all the google-resources pointing to browser extensions (or browser settings), I’m going to close this.
Forum: Plugins
In reply to: [Events Made Easy] Constant error “error while communicating to server”The second one was already fixed in 2.2.10 (and 2.2.11 is released just now).
So you need to figure out what is blocking you. I’d suggest to start with disabling ublock and go from there.Forum: Plugins
In reply to: [Events Made Easy] Constant error “error while communicating to server”Did you upgrade your EME version already (to know if it is related to 2.2.11)?
Forum: Plugins
In reply to: [Events Made Easy] Constant error “error while communicating to server”Can you check your webserver logfiles? Or the php error logs? Those contain the needed hints …
Forum: Plugins
In reply to: [Events Made Easy] Time field missingCan you post a screenshot of how your page looks like when creating an event? If “all day” is not selected, you should see the text “Event time” (with 2 boxes) underneath the date selections. Make sure no css is hidng these fields either. And check your browser console for Javascript errors (although the time fields use the same Js library as the date fields, so if those work then the time fields should work too, so I’m guessing some css is hiding those).
Forum: Plugins
In reply to: [Events Made Easy] RSVP display errosThen you either patched the lines wrong or you replaced the whole file (which is not allowed as it contains other changes too). Please review your changes you did to that file.