useStrict
Forum Replies Created
-
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Receive notification for a specific user replyHi @landocalrissian,
There is no setting for that, but it’s achievable with some custom code in your child theme’s functions.php file. But before I write that up, I need to know how this would play with the other plugin settings. Would you be filtering out any notifications that are not to the author?
Cheers,
VinnyForum: Plugins
In reply to: [bbPress Notify (No-Spam)] Upgraded WP, now no notificationsThose notifications are not from my plugin and I can’t tell for sure if they’re conflicting – I don’t think they are.
Is there anyway to retrigger a notification for a post?
Yes, to to the Admin area, open the editor for the post, check the Send Notifications checkbox if it’s not already checked, and click Update.
Use WP Crontrol plugin to see if you have any cron jobs called bbpress_notify_bg_* (can be topic or reply) after creating a topic in the front end. If you do see it, trigger the run and check the email logs.
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Upgraded WP, now no notifications483 users is quite a lot. Please check that you have background notifications enabled. I also recommend installing WP Email Logging to see if any notifications are going out (maybe it’s not reaching your test email address before the host kills the process).
Let me know what you find.
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Upgraded WP, now no notificationsHi Bob,
Thanks for reaching out. What do you get when you use the Dry Run tool on a topic?
Cheers,
VinnyHi Andrew,
Sorry, I missed your post.
Subscribing/unsubscribing is controlled by bbPress.
bbPress Notify (No-Spam) does not give end users any options. Admins need to configure them globally as it only handles notifications.There is a premium digests add-on which will provide what you are looking for. You can find it here:
https://usestrict.net/product/bbpress-notify-no-spam-digests/
Cheers,
VinnyDone. Thank you.
Forum: Plugins
In reply to: [UseStrict's Calendly Embedder] Pop up widgetSomething is triggering a javascript error.
Uncaught TypeError: handle is null????<anonymous> https://koncierz.com/:272????<anonymous> https://koncierz.com/:282
I did try your shortcode on my dev site and, after switching the curly quotes to normal ones (which I assume was changed by the support forums), found that it works fine. See screenshot in the link below.
https://capture.dropbox.com/t0MQseAqmCsufPnYOnce you figure out what is causing the javascript error, things should go back to normal.
Cheers,
VinnyForum: Plugins
In reply to: [UseStrict's Calendly Embedder] Pop up widgetHi @rajshrestha, which buttons are you referring to?
Forum: Plugins
In reply to: [UseStrict's Calendly Embedder] Name field Not populating with embedHi Xander,
Sorry for the delay. The issue with ‘name’ is that WordPress uses that internally to figure out the name of the page. So it won’t really work with Calendly prefills. You’ll have to stick with firstName and lastName.
However, that means that your calendar also needs to have separate ‘firstName’ and ‘lastName’ fields (the one in the staging site only has the single ‘name’ field).
Cheers,
VinnyForum: Plugins
In reply to: [bbPress Notify (No-Spam)] People do no receive Reply by emailHi @odbgroup,
Thanks for reaching out. The WP forums are intended only to discuss free plugins. Reply by Email is a premium extension for bbPress Notify (No-Spam), and as such, cannot be discussed here.
Please post your question in the UseStrict support forum (https://usestrict.net) and I’ll reply there.
Cheers,
VinnyForum: Plugins
In reply to: [WooCommerce] WC cron jobs running when plugin is not even installedI deleted both jobs with wp-cli. Not sure why they were left behind in the first place.
Do you have cookie based brute force protection on?
No, we don’t. Again, this only happens *sometimes*, not all the time.
Thanks for the quick reply.
Her IP is NOT in the permanent block list. If it were, it would have been another bug as she does manage to log in most times. The issue happens randomly and when she tries again immediately after the failure, it works.
Note that it has never happened to me. The IP detection screen does detect my own IP correctly, and I assume it does hers as well.
Cheers,
VinnyForum: Plugins
In reply to: [bbPress Notify (No-Spam)] Notifications Sometimes Not SentHi Bob,
Sorry for the late reply.
First thing that comes to mind is to see whether background notifications are enabled. Depending on the number of users, if background notifications are off, the web server may kill the process before all emails have been triggered.
Next, I’d recommend checking not only a local email log plugin, but the logs of whatever email service you have configured to use. If a message shows up in the local log, then it left the server. The email service logs will tell you what happened with the message from that point on. Double check your SPF and DKIM records to make sure that messages aren’t getting flagged as spam.
Cheers,
VinnyForum: Plugins
In reply to: [bbPress Notify (No-Spam)] Problem with the background notificationHi,
You can hook into the following to manage any custom tags:
$email_subject = apply_filters( 'bbpnns_filter_email_subject_in_build', $email_subject, $type, $post_id ); $email_body = apply_filters( 'bbpnns_filter_email_body_in_build', $email_body, $type, $post_id );