Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Fehlermeldung: Das Start-Datum fehlt!Based on your first screenshot, I see that you have javascript errors on your page. Reason that I know this is that the time-fields are showing while the option “This event lasts all day” is checked (checking that option hides the time-fields). Also the format of the date is not identical with your wordpress date format, which also means a javascript error is present.
You should fix the javascript errors. I can’t log into your admin instance, so I can’t tell you which plugin/theme causes the errors, but you should see them in your browser console.Forum: Plugins
In reply to: [Events Made Easy] Fehlermeldung: Das Start-Datum fehlt!Can you post a screenshot of your event? And also, what are your settings concerning the wordpress format for date and time?
Forum: Plugins
In reply to: [Events Made Easy] SQL error in WHERE AND bookings.status!=0No problem. I do advise the 2.2.64 upgrade (a small typo fix for multiseat event bookings).
Forum: Plugins
In reply to: [Events Made Easy] SQL error in WHERE AND bookings.status!=0That sql only matches on 1 place in the code, and that error was fixed in 2.2.62. Are you sure you’re on 2.2.63? The issue was triggered in the eme_mybookings shortcode, can you verify that?
Forum: Plugins
In reply to: [Events Made Easy] Add a new Member: Missing Save-ButtonThe form is an EME template (that you need to define in order for members to be able to sign up). That form needs to contain correct html, no missing tags etc … otherwise your submit button might not show. If you don’t define the submit button in your form (using e.g. #_SUBMIT), EME adds it just at the bottom (which might not be correct, depending on your html).
For all placeholders you can use in the signup form: https://www.e-dynamics.be/wordpress/category/documentation/7-placeholders/7-13-membershipform/Forum: Plugins
In reply to: [Events Made Easy] delete member, people, WP userThe next version will also have eme_delete_person_action , so the action can be executed when the person is actually deleted from EME (and not just when moved to trash).
Forum: Plugins
In reply to: [Events Made Easy] delete member, people, WP userYes, sorry about that (typing demo code without testing always leads to such stupid mistakes as forgetting quotes).
Indeed, no way back if the wp user is deleted (that’s why I don’t really want to do it in the EME code).Forum: Plugins
In reply to: [Events Made Easy] delete member, people, WP userBtw, deleting a user (with that filter) is then as simple as:
add_action(eme_trash_person_action, my_eme_trash_person_function); function my_eme_trash_person_function($person) { wp_delete_user($person['wp_id']); }Forum: Plugins
In reply to: [Events Made Easy] delete member, people, WP userCurrently that is not EME functionality. I’m very hesitant to implement something like that (imagine some bug and wrong WP users get deleted). What I will do is define an action (eme_trash_person_action) that you can call upon moving a person to the trash. So then you can delete a wp user if so wanted.
This is the changeset:
https://plugins.trac.wordpress.org/changeset/2678024/Forum: Plugins
In reply to: [Events Made Easy] Wrong Events displayed at locationThis took me a while to figure out, but this fix should solve the problem:
https://plugins.trac.wordpress.org/changeset/2675992/Forum: Plugins
In reply to: [Events Made Easy] Pb e-mail information sent to a group at each new eventAnswer given in that thread, so closing this.
Forum: Plugins
In reply to: [Events Made Easy] How do members sign in with EMEMost plugins foresee a custom form to log in, but after that it is just wordpress. EME doesn’t foresee its own custom form to log in, indeed any other plugin can be used to show the login form in a layout of choice.
Forum: Plugins
In reply to: [Events Made Easy] How do members sign in with EMEEME uses wordpress for username/password functionality.
In EME, you can configure a membership to create a WP user when someone signs up. After that, a new member receives a WP account and EME links that WP account to the person present in EME.
After that, when someone logs in, EME is able to detect which person is linked to that WP user and see what groups/memberships that person has and decide (based on your settings for a page) to let the user see the content.
Currently that WP-user creation when a new member signs up (not when the member pays), so it even works for imported members.
The only “problem” is that WP only allows a single use of an email address (which is logical), but that can have a consequence for EME of course.Forum: Plugins
In reply to: [Events Made Easy] Bitte wähle mindestens eine Veranstaltung aus.Fix released.
Forum: Plugins
In reply to: [Events Made Easy] Bitte wähle mindestens eine Veranstaltung aus.Confirmed as a bug. I’ll fix it asap and release today again.