Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Usage of calendarThey can click on the year and then then on the decades …
If not sufficient, create a custom field of type “Date (HTML5)” (but even your browser won’t provide something easy).
Any solution that is javascript based needs to be localizable and understand php datetime notation (to be something I consider ok for EME), so it limits a lot … I updated the current datetime picker for that, but feel free to come up with a patch to improve on it:
https://github.com/liedekef/fdatepicker
But as long as no one is giving me a hand, it will (unfortunately) stay as is.Forum: Plugins
In reply to: [Events Made Easy] Displaying a table for a templateSimplest solution: create 3 templates. First a header template with (based on your example) ID=3:
<table style="border-collapse: collapse;width: 100%"> <thead> <tr> <th style="width: 25%" scope="col">Name</th> <th style="width: 25%" scope="col">Title</th> <th style="width: 25%" scope="col">Phone</th> <th style="width: 25%" scope="col">E-mail</th> </tr> </thead> <tbody>Then a footer template with ID=4:
</tbody> </table>The a template with id=2 (change the placeholders to your liking):
<tr> <td>#_NAME</td> <td>#_FIELD{title}</td> <td>#_PHONE</td> <td>#_EMAIL</td> </tr>and then just call the templates:
[eme_people group_id=1 template_id_header=3 template_id=2 template_id_footer=4]
the template with id=2 will get repeated for each person in the group with id=1Forum: Plugins
In reply to: [Events Made Easy] Showing a template only for the member of the groupThat’s weird because that would mean my whole code is wrong for groups/people etc … I can’t seem to reproduce it here, but I’ll give it another go.
Edit: tried it and no luck: the group of people shows as expected. Are you sure your group_id is correct?Forum: Plugins
In reply to: [Events Made Easy] Displaying a table for a templateHi,
for things that get looped (like the list of events or bookings), you can provide a header/entry/footer template, so put the html-header part of the table in the header, one row in the entry and the html-footer part of the table in the footer.
Forum: Plugins
In reply to: [Events Made Easy] Import discounts from CSV doesn’t use expire dateThe values for use_per_seat are 0 or 1. Best is to check the DB for the possible values of fields to import by looking at an existing entry (that’ll help in a lot of cases).
Concerning a time of expiry: the format can also be “YYYY-MM-DD hh:mm:ss” (I updated the doc).Forum: Plugins
In reply to: [Events Made Easy] Writing a templateSee the submenu “Templates”. Depending on the use, you can use placeholders for events, locations … see https://www.e-dynamics.be/wordpress/category/documentation/7-placeholders/ . In your case, the submenu “People” will show all possible people placeholders.
But based on the use, I’m guessing you want to show people info based on a booking or so, so also look into “Booking list”.Forum: Plugins
In reply to: [Events Made Easy] Import discounts from CSV doesn’t use expire dateSorry, small errors in the doc. I updated the doc on the fields mentioned.
Forum: Plugins
In reply to: [Events Made Easy] Events categories not visible for admin roleI’m not quite sure if I understand what you’re saying …
Are categories enabled in EME? See EME Settings > General > “Use categories?”Ok, there was a typo bug in #_FILTER_LOCS (if multiple was not set). This change fixes that:
https://plugins.trac.wordpress.org/changeset/2588986/I’ll release a new version to send out the fix.
That’s weird. If it works with the older version, it should work with the newer one too. I’ll test and come back to you.
See your EME settings, tab “Events”. At the bottom you can configure your fields used in the filter form (setting “Default event list filtering format”). If that doesn’t contain #_FILTER_LOCS, you won’t get a location dropdown (in the case you use eme_filterform together with a template, correct that template of course).
See https://www.e-dynamics.be/wordpress/277/ for all the placeholders you can use.Forum: Plugins
In reply to: [Events Made Easy] Events categories not visible for admin roleCheck your EME settings, tab “Access” and what capability you’ve configured for Categories.
Forum: Plugins
In reply to: [Events Made Easy] JSON Fields missingI do no longer support the facebook sync plugin, so you need to ask that maintainer (somebody promised they would take over that plugin, but I don’t know the activity on it).
Concerning the json fields: some are optional (eventStatus, performer, location.name and image).
I’ve tested https://www.thetwiolins.de/de/events/eight-seasons-konz-musik-festival/ on https://search.google.com/test/rich-results and it says “Page is eligible for rich results”, so I don’t see any issues.Forum: Plugins
In reply to: [Events Made Easy] AanwezigheidslijstYou can set the RSVP option “Only take attendance (0 or 1 seat) for this event” (and make sure the minimum number of seats to book is 0). Then people can indicate if they are present or not, and using [eme_attendees] (with the correct options, see also https://www.e-dynamics.be/wordpress/category/documentation/6-shortcodes/eme_attendees/ ) inside the single event format setting, you can then show who is present and who not.
The eme_attendees shortcode needs to point to a template with e.g. content “#_ATTENDNAME #_ATTENDSEATS” or so.Forum: Reviews
In reply to: [Events Made Easy] Events made extremely complicated@sparkyjohnmarky : you replied to my reaction but since this is not a support forum, I guess wordpress removed this. Please do open a support post if you like to talk about issues you encountered with EME.