Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Trigger an Update from PHPNo reply, so considering resolved.
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] formulaire ne fonctionne plusThe problem was in the latest version of EME that did some sanitizing in an incorrect manner, a new version has been released to rectify this. Also a new version of EMEFS has been released to provide more error feedback in case event validation fails.
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] formulaire ne fonctionne plusPlease provide a method to register (currently not allowed).
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] formulaire ne fonctionne plusCaptcha is only mandatory if you indicated it to be used.
Concerning a demo: I’m not allowed to ask for admin rights (and I can understand that). You can provide me with the site url so I can subscribe (or you do that) and you can give me the needed minimal rights to create an event temporary.Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] formulaire ne fonctionne plusIs the event entered in the database? If not, maybe an issue there?
Do you have an example link to verify?Forum: Plugins
In reply to: [Events Made Easy] Trigger an Update from PHP“sometimes” is a weird thing in ict 🙂 Can you reproduce this reliable?
No reply, so considering solved.
The move of a booking only does 1 thing and that is changing the event id related to the booking. So if anything else gets emptied, it is maybe because the target event doesn’t have the same definition for its rsvp fields. So compare the RSVP definition for the 2 events.
If all is the same, please provide a simplistic reproduction scenario (custom field definition etc) so I can try it too.Forum: Plugins
In reply to: [Events Made Easy] Bug with radiobox custom fieldThe event-copy currently indeed doesn’t take custom field values into account. This should fix that:
https://plugins.trac.wordpress.org/changeset/2515931/Forum: Plugins
In reply to: [Events Made Easy] EME_IF when category is A or BWell, currently it is not possible to simplify this, but I liked the question so I changed the code so “incsv” can do it:
https://plugins.trac.wordpress.org/changeset/2515924/If implementing the code (and provided I didn’t make any mistake), this should then work
[eme_if tag='#ESC_CATEGORIES' incsv='Category-A,Category-B'] Do stuff [/eme_if]Forum: Plugins
In reply to: [Events Made Easy] Error on clicking Register buttonThe typo which caused the initial problem has been long fixed in the released version. So please open a new thread for your problem, also post an example url and describe what you already tried to resolve it (e.g. look at the browser javascript console, your logfiles, disabling other plugins, etc …).
Forum: Plugins
In reply to: [Events Made Easy] Example of eme_extra_event_headers_json_filterWithout a page example and based on your info, I can only say that the code is correct (as google indicates too) and you experience some kind of caching.
Edit: but to be sure I didn’t miss anything: I’ll try it out here too on some test events (maybe some escaping is happening …).- This reply was modified 5 years, 1 month ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] Example of eme_extra_event_headers_json_filterSo the example works for you? Then I’ll add that as an extra example in the doc too.
Forum: Plugins
In reply to: [Events Made Easy] Example of eme_extra_event_headers_json_filterOk, I’ve dived a bit in my own code and you can just use placeholders there, resulting in easier coding. Also the performer-part should be an array (according to json-ld), so for example:
function eme_3cs_google_headers($current_headers, $event) { $performer=array(); $performer["@type"]="Person"; $performer["name"]="#_FIELD{performer}"; $current_headers["performer"]=$performer; $current_headers['eventStatus']="#_FIELD{eventState}"; return $current_headers; } add_filter('eme_extra_event_headers_json_filter','eme_3cs_google_headers', 10, 2);Because performer can be so many things (group, person, …) it didn’t match the notion of an event where e.g. you have different groups performing (and EME isn’t currently cut out for asking that info). Also json-ld value for event status differs according to the doc you’re consulting (e.g. you find Rescheduled and EventRescheduled, while google examples say ” https://schema.org/EventReScheduled “, see https://developers.google.com/search/docs/data-types/event). Since it is not always clear I’m currently not adding those 2 (which are not really required anyway).
I could include a default performer (and point it to the contact person), but that’s not really the truth, and for school classes that’s not really true either. Also I find no real example on how to add multiple performers or groups, so it is not an easy one.- This reply was modified 5 years, 1 month ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] EME causes redirect?Well, remove the external url-text (it is incorrect) and your prob is solved. For showing single event dates I’d suggest to work with an EME category (so you don’t need to remember or know the event id) but otherwise your method is ok. You can also use an EME widget to show specific info on events etc …
Or if you want to keep all as is, the disable the EME option to redirect to external urls if present.