Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] EME no longer sends emailsOk, then there are 2 possibilities: either some error is triggered when EME tries to process the queue (should be visible in your website error logfiles), or your wp-cron is no longer working as expected.
For the second possibility, you can install “Advanced Cron Manager” and then ‘in the Tools menu) check all cron schedules with their latest execution time, execute a planned action (like “eme_cron_send_queued”) yourself etc …Forum: Plugins
In reply to: [Events Made Easy] EME no longer sends emailsThe setting is either in the general EME settings, tab “mail”. Or the per-event settings, concercing “contact person”.
Also: you are mentioning that you see the email log until 26th of Octber, but nothing after that. So: have people booked after that time? And if so: are your events configured to send out emails after RSVP arrives? An empty email subject/body will not send out a mail, nor if you have the option “Enable the RSVP e-mail notifications?” (and the options below that) active in the generic EME options, tab “Mail”Forum: Plugins
In reply to: [Events Made Easy] Ongoing events in [eme_mybookings]eme_mybookings never showed ongoing events for future=1 (which is the default).
The sql-statement is visible in the function eme_get_bookings_by_wp_id in the file eme_rsvp.php and hasn’t changed in months. I went back until 2.2.10 (from July 15th) and even there it was like that. The thread you mentioned even says/confirms that.
Feel free to open a feature request at https://www.e-dynamics.be for ongoing events.Forum: Plugins
In reply to: [Events Made Easy] EME no longer sends emailsWell, I have it at 10 mails every 5 minutes. But even 50/hour should work.
If the test mail works, it means the EME settings are ok, so that shouldn’t be the problem. However, check your email sender: when defining an event, the sender is set to the contact person of the event if the global EME settings for “Default email sender name” and “Default email sender email” are empty. If those settings are not emty, those are taken as sender. If that sender is not allowed to send emails from your mailserver, it won’t work.
- This reply was modified 4 years, 6 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] EME no longer sends emailsCheck your setting “Send out queued mails in batches of” in the EME menu “Scheduled actions”
Forum: Plugins
In reply to: [Events Made Easy] Email notification after an event has been addedUse the hook eme_insert_event_action to create a notification, see the example:
https://www.e-dynamics.be/wordpress/category/documentation/12-hooks-and-filters/Forum: Plugins
In reply to: [Events Made Easy] WoocommerceNo it is not possible. EME integrates with a great number of payment gateways itself though (all freely available in EME).
Forum: Plugins
In reply to: [Events Made Easy] dynamic field value for multiple seatsOk, in that case #_SEATS is indeed a value you could check for, but then you’ll need to wait for the next release or use the development version.
Forum: Plugins
In reply to: [Events Made Easy] dynamic field value for multiple seatsThe answer to the big “when” question is the same as for all open source projects: when it is ready, it will be released 🙂
You don’t *have* to use #_SEATS, but you’ll be able to. You can still use #_SEATS{1} and #_SEATS{2} .
Concerning your text about “emailaddress”: I don’t understand at all what you mean there. The email address is a required field and can not be a dynamically added field, so you should always use #_EMAIL. Maybe you should explain your use-case here?Forum: Plugins
In reply to: [Events Made Easy] dynamic field value for multiple seatsYou could download the dev-version if you want to continue quickly, otherwise you’ll have to wait for the next version.
Forum: Plugins
In reply to: [Events Made Easy] dynamic field value for multiple seats#_SEATS works as expected, however in the dynamic conditions check there’s a logic error preventing it from working there (I check if a person is linked to the booking before replacing placeholders, but during the dynamic data condition check I create a “fake” booking but no person is linked to it, so it failed there 🙂 )
The next version will have this corrected.- This reply was modified 4 years, 6 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] dynamic field value for multiple seatsHum … I’ll check on #_SEATS for multiseat bookings, but for your conditions: you can define 2 conditions: one for #_SEATS{1} and an identical one for #_SEATS{2}. Does that not solve the issue?
Forum: Plugins
In reply to: [Events Made Easy] dynamic field value for multiple seatsYou can use #_SEATS{1} as a condition, or #_SEATS{2}.
By default the condition fields are only allowed for fields you use in the booking form. If you want the form to react on both #_SEATS{1} and #_SEATS{2} while you want your condition to be on #_SEATS, you should activate the option “Dynamic data check on every field”Forum: Plugins
In reply to: [Events Made Easy] Frontend database configThat is only possible from the backend. I try to avoid duplicating every backend functionality to the frontend …
Forum: Plugins
In reply to: [Events Made Easy] Frontend database configIndeed 🙂