Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] birthday email is sent twiceGood to hear and glad it all got sorted out!
Forum: Plugins
In reply to: [Events Made Easy] User confirmation some days before event startsIndeed, currently the code adds the link at the end if you don’t set it yourself in the mail (otherwise user confirmation is not possible).
If you’re comfortable with wordpress filters and apply this changeset:
https://plugins.trac.wordpress.org/changeset/2725873/
you can then use the filter eme_rsvp_email_html_userconfirmation_pending_body_filter
to filter the body of that specific mail and remove that url.Since the regex can be a pain, I also created new filters. If you apply this changeset:
https://plugins.trac.wordpress.org/changeset/2725876/
you can then use the filter eme_rsvp_email_format_userconfirmation_pending_body_filter
to filter the body of that specific mail and remove the text “#_BOOKING_CONFIRM_URL” from it.Forum: Plugins
In reply to: [Events Made Easy] birthday email is sent twiceCan you check in eme_cron.php that there’s now only 1 call to the function eme_people_birthday_emails ?
And that function is called in the WP scheduled action called “eme_cron_daily_actions”. Currently that’s the only action in there, so if you have something like WP Cron Manager installed, you can run that action again and again to check with a user. I’ll check later on too.Forum: Plugins
In reply to: [Events Made Easy] To apply for the multiple discount codesJust go in the discount menu of EME, and there go in discount groups and create a group … then you can use that group.
Forum: Plugins
In reply to: [Events Made Easy] User confirmation some days before event startsWait .. I just reread your initial question. Are you saying that you require user confirmation, but not immediately? The pending reminder email won’t solve that. User confirmation is either done or not, but the pending reminder email is for booking that require admin approval (or payment or so), not user confirmation.
User confirmation mail is sent out right away, after which a booking goes in “pending” state (if the event is set like thay), and then your reminder can go. Currently there’s no delay in the user confirmation mails possible, unless you code up the whole thing …Forum: Plugins
In reply to: [Events Made Easy] User confirmation some days before event startsYou need to set the setting “Set the number of days before reminder emails will be sent for pending bookings” in the event RSVP settings. Did you do that?
Forum: Plugins
In reply to: [Events Made Easy] To apply for the multiple discount codesYou can press the “x” to the right to remove the current selection.
Discount value can only be 1 discount, otherwise create a discount group and use that.Forum: Plugins
In reply to: [Events Made Easy] birthday email is sent twiceFinally found the problem: I’m just calling that function twice 🙂
This fixes it (apply just the delete-line change in eme_cron.php):
https://plugins.trac.wordpress.org/changeset/2725363Forum: Plugins
In reply to: [Events Made Easy] User confirmation some days before event startsInstall a plugin like WP Cron Manager and run the planned action “eme_cron_events_daily_actions”
Forum: Plugins
In reply to: [Events Made Easy] User confirmation some days before event startsThe setting you mentioned is only to set the default for new events. Go into an existing event and configure your reminder setting there, that should do the trick. I’ll add some more explanation to that generic setting.
Forum: Plugins
In reply to: [Events Made Easy] For The booking and approved Email TemplateBy default EME uses queuing for mails. Either deactivate the mail queue, or configure it to send mails quicker (can be done in the EME general email settings).
If using mail queuing, EME depends on the wordpress cron functionality. In the mail settings I explain what you can do to make that more reliable (as by default wordpress cron runs only when your site gets visited by something).Forum: Plugins
In reply to: [Events Made Easy] birthday email is sent twiceThat’s weird. In my tests this works fine, only 1 email is sent. Can this be the cause of another person with the same email? Is it the same person id that is being used for both memberships?
Forum: Plugins
In reply to: [Events Made Easy] birthday email is sent twiceOr you change the info for a person to tomorrow 🙂
Forum: Plugins
In reply to: [Events Made Easy] birthday email is sent twiceThis should help:
https://plugins.trac.wordpress.org/changeset/2724404/(only the DISTINCT-changed lines should already be enough, the rest is more cosmetic)
Forum: Plugins
In reply to: [Events Made Easy] Overbooking beyond maximum guest numbersI added the placeholder #_YOUNGPENDINGSEATS , so you can check that for an event and show it during the form.