Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Document attachments to eventsYou can use wordpress uploaded documents in the event description. File uploading per event via a custom field is not possible (yet).
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] required field on formEMEFS doesn’t do anything layout-wise, you need to check your used emefs template if something isn’t correct.
Concerning the end date and time: while it is not logical to not have an end date/time, I’ll revert to the old behavior of setting the end date/time to the start date/time if empty. The next version fixes this (also released).Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] required field on formI released a version that should solve this issue.
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] required field on formIc sorry, I lost track of this one. I’ll try to take a look at it later on, probably it is related to the empty date being zeroed.
Forum: Plugins
In reply to: [Events Made Easy] Automatic timezones in emeWeird … doesn’t happen when I try it. But I’ll take a note of the feature request myself (it is on my todo list …)
Forum: Plugins
In reply to: [Events Made Easy] Automatic timezones in emeCurrently EME doesn’t support timezones. The thing is that it is not too difficult to allow the choice of timezone, the problem relies in converting from 1 timezone to another when displaying the event in the calender, and the unknown factor of user timezones (I try to take into account the client time via javascript, but that’s not perfect either).
Maybe I’ll already start with just allowing the timezone choice and go from there later on …
Can you open a feature request for this at https://www.e-dynamics.be/wordpress ?Forum: Reviews
In reply to: [Events Made Easy] So far so good (once I created the tables)Based on your changes, you mst have an old and unsupported mysql version (EME requires mysql 5.6 or newer). From the 5.6 doc (I can’t find any older doc):
https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html
you can see that BOOL and BOOLEAN are synonyms for TINYINT(1)
This is also true for mariadb: https://mariadb.com/kb/en/boolean/And for datetime:
https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html
” Invalid DATE, DATETIME, or TIMESTAMP values are converted to the “zero” value of the appropriate type (‘0000-00-00’ or ‘0000-00-00 00:00:00’), if the SQL mode permits this conversion. The precise behavior depends on which if any of strict SQL mode and the NO_ZERO_DATE SQL mode are enabled; see Section 5.1.10, “Server SQL Modes”. ”So maybe there the NO_ZERO_DATE mode is active for you? Maybe the BOOL is an identical problem then, but I haven’t encountered others with this issue.
It might be worth investigating your setup, this might prove useful for others too (and I may need to change the defaults …)Forum: Plugins
In reply to: [Events Made Easy] Custom fields and placeholdersFrom the doc:
“#_EVENTFIELD{xx} displays the database value of the event property called ‘xx’ (with ‘xx’ being ‘event_id’, ‘event_name’, etc … see eme_events.php, function eme_new_event) This can replace a number of more specific placeholders below (and future placeholders can be avoided like this too)”so that’s not what you want. You need to use #_FIELD{convoi}
Forum: Plugins
In reply to: [Events Made Easy] option or compatible plugin for open pricing events?Sure, use a custom field of type text for that and indicate the option “Extra charge” for it. And indicate the initial price for your event is 0 (if that’s the case).
Forum: Plugins
In reply to: [Events Made Easy] Event link href and placeholdersUse #_EVENTPAGEURL to create own links, see https://www.e-dynamics.be/wordpress/category/documentation/7-placeholders/7-2-events/
Forum: Plugins
In reply to: [Events Made Easy] Changing from individual events to daily eventsEME follows the wordpress rules on html in posts, meaning in your case probably a number of html tags are stripped. EME can help you allowing more tags though, see the setting “Extra html tags” in the EME options, tab “Other”
Forum: Plugins
In reply to: [Events Made Easy] Changing from individual events to daily eventsThere were some bugs in this. This changeset should fix it:
https://plugins.trac.wordpress.org/changeset/2371589/Also, please be aware of the option “show single event” in the EME options, tab “Calendar”.
Forum: Plugins
In reply to: [Events Made Easy] Changing from individual events to daily eventsMake sure you entered the html in the plain text editor part when editing a template. If you enter that in the html part, then it will get rendered as is.
The eme_filterform does have a date picker though …Forum: Plugins
In reply to: [Events Made Easy] Changing from individual events to daily eventsWell, then I’d suggest to take a look at [eme_filterform] in combination with [eme_events] (or [eme_locations]. See
https://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_filterform/
An example on how I use that: https://wintersportgids.be/materiaal/store-locator/Anything else I can’t offer 🙂
Forum: Plugins
In reply to: [Events Made Easy] Changing from individual events to daily eventsUse [eme_location] (with the id-option to indicate the location of choice) on a page (or [eme_locations]).
Then inside the single location format, use [eme_events] with the option location_id. An example is given at the bottom here:
https://www.e-dynamics.be/wordpress/category/documentation/7-placeholders/7-3-locations/