Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Bookings list images of usersJust tried #_IMAGE, and works fine in the templates used by the eme_people shortcode. In which context are you using it?
Forum: Plugins
In reply to: [Events Made Easy] How can I user user-defined fields in Events?The same placeholders can be used.
Forum: Plugins
In reply to: [Events Made Easy] Bookings list images of users#_PERSONFIELD was in fact a bug in the code, will be fixed in the next version (but you don’t need it now anyway …). Also, it will get renamed to #_PERSONDBFIELD (as many others that in fact get a column from the db: #_EVENTDBFIELD{xx}, #_LOCATIONDBFIELD{xx}, #_BOOKINGDBFIELD{xx}, #_ATTENDDBFIELD{xx}, #_RESPDBFIELD{xx} and #_PERSONDBFIELD{xx})
The image is still ongoing 🙂
Forum: Plugins
In reply to: [Events Made Easy] How can I user user-defined fields in Events?If it is an event field, from the doc:
#_FIELD{xx} returns the answer (the tag, not the real value chosen for multi-option fields) for the extra form field with ID or name xx
#_FIELDVALUE{xx} returns the answer (not the tag, but the real value chosen for multi-option fields) for the extra form field with ID or name xx
#_FIELDNAME{xx} returns the name for the extra form field with ID or name xx
Forum: Plugins
In reply to: [Events Made Easy] Bookings list images of usersOk, concerning #_WPID: in general, the placeholder is first taken by the generic placeholders function (meaning it gets replaced by the wp id of the currently logged in user). If you use #_PERSONWPID the match happens later, so that works per person then (what you want), the doc on people placeholders mentions the use of the “PERSON” prefix for this as well (but even I forget about it sometimes 🙂 ).
It is weird though that #_PERSONFIELD{wp_id} is not working (should), I’ll check that together with the #_IMAGE placeholder.Forum: Plugins
In reply to: [Events Made Easy] Bookings list images of usersfor the wp id: true, #_WPID is only for the logged in user. You can use the less known #_PERSONFIELD{wp_id} trick (gets the info for wp_id from the EME people database).
And getting the info for the user image is not “just” the user image, because by default it is not even set in WP but in gravatar (not even sure if WP stores that) … next to that you have custom plugins which create other fields for user info, and EME can’t take all that into account of course. Anyway, using the user avatar is possible, but is a feature request to be made on https://www.e-dynamics.beForum: Plugins
In reply to: [Events Made Easy] Bookings list images of usersCurrently not possible in EME directly, you could use a custom plugin/shortcode that does this and use the EME placeholder #_WPID as value for the logged in userid.
I could look at the user gravatar if no EME image is entered though …
Later on I’ll check the #_IMAGE placeholder, it should work by default (it is the same code as #_IMAGETHUMB but with “full” as size, but maybe something is wrong there).Forum: Plugins
In reply to: [Events Made Easy] Feed with 4 events from 4 different categoriesThat’s not a “feed”, but just a list of events. But my answer stays the same, only use the eme_events shortcode with the category and limit option. See https://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_events/
Forum: Plugins
In reply to: [Events Made Easy] Feed with 4 events from 4 different categoriesI assume you mean the RSS feed. That has options to limit events to specific categories (the category option can contain your 4 category ids like “1,2,3,4”) and the limit option (which shows by default 5 events). That’s all documented here:
https://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_rss_link/Forum: Plugins
In reply to: [Events Made Easy] future=0 is not working anymoreSeems to be working fine here. However, the doc was not correctly updated: future is a deprecated param, you should use scope with possible values “future”, “past” or “all”. But I tested with the old param and get results as expected, make sure no caching is happening …
Forum: Plugins
In reply to: [Events Made Easy] random_order stopped workingThis should fix it:
http://plugins.trac.wordpress.org/changeset/2741444Forum: Plugins
In reply to: [Events Made Easy] HTML5 form localeEME has no influence on how your browser renders htmlt elements. There are also no attributes to change it (see https://www.w3schools.com/TAGS/att_input_type_date.asp ). More specifically the date/time rendering can be different per browser so if you think there’s a bug, you should check with chrome or Firefox and report the bug there.
Forum: Plugins
In reply to: [Events Made Easy] HTML5 form localeno reaction, marking resolved
no reply, marking resolved
Forum: Plugins
In reply to: [Events Made Easy] Calendar event links – is just text (no links)Sorry, due to a typo the link was not being shown for the placeholde #_LINKEDNAME , causing the effect you see. I just released 2.2.84 to rectify this.