widecast
Forum Replies Created
-
Thanks for the reply.
I’m looking at this again. Aren’t both of those snippets doing the same thing? Is it possible that only adding the first code to functions.php would be enough?
- This reply was modified 5 years, 7 months ago by widecast.
Forum: Plugins
In reply to: [Contact Form 7] All Messages Blocked as Spam (ReCaptcha V3)Does this error message have an orange or red border? Each color requires a different solution.
It was an orange border.
When ReCaptcha V3 was active do you see the reCAPTCHA Privacy badge displayed at the bottom of every page on your site (not just the pages where you’ve got CF7 forms)?
I used a custom function to only display the privacy badge on the contact form pages themselves.
I’ve re-entered my ReCaptcha V3 keys and the forms seem to be working again. The issue appears to be resolved by removing and re-entering the keys.
I will mark the issue as resolved for now and reply to this thread if the issue returns.
Thank you @buzztone for responding!
- This reply was modified 5 years, 7 months ago by widecast.
Hello,
The plugin log is showing these bounces as “weird_forward” instead of triggering my selected bounce rules.
Would it be better to categorize these as “mailbox_not_available” so that these users could be automatically handled instead of forwarded?
Thank you.
Thank you for looking into this.
Have you been able to replicate the issue on your end? Do you need any more information from me?
I’ve tested the new version (1.1.9) and the issue appears to be fixed. Thank you!
I am having the same issue, @abdultikweb.
Even with welcome emails set up, they aren’t being sent when the subscriber is added via Gravity Forms.
Rolling back to plugin version 1.1.5 resolves the issue.
I can confirm that I’m having the same issue.
Subscribers added successfully but they are not receiving the corresponding welcome emails.
I’m getting the same error.
Rolling back to PHP 7.2 (from 7.3) prevents the error from occurring.
I’ve just finished migrating one of three websites that use MailPoet to version 3. For the other two that are still using version 2, I’ve had to roll back PHP to keep the sites functioning.
A fix for this issue would be appreciated…
Forum: Plugins
In reply to: [Favorites] click does not wordkDid you navigate to “Settings” –> “Favorites” –> “Display & Post Types”?
Here’s a screenshot: https://imgur.com/g9zsCD4
- This reply was modified 6 years, 1 month ago by widecast.
Forum: Plugins
In reply to: [Favorites] click does not wordkI had the same issue with the latest update. In my case, it was related to the following update listed in the changelog:
Security Update: Removes potential security issue where user may favorite a non-public post, or a post where favorites are not enabled.
I was able to resolve it by going to the “Display & Post Types” options in the plugin’s settings and clicking the checkboxes for necessary post types.
Forum: Fixing WordPress
In reply to: I think my site has been comprised… Please help if you canCheck if you had the GDPR Compliance Plugin installed. If you did, and it wasn’t updated, that’s likely what caused your issues. I just went through fixing this on one of my websites.
Here’s a helpful guide: https://blog.sucuri.net/2018/11/erealitatea-net-hack-corrupts-websites-with-wp-gdpr-compliance-plugin-vulnerability.html
Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Members with Theme My LoginThank you for the explanation. That makes sense.
I just tested 3.2.1 from GitHub and it does in fact appear the resolve the validation issue on the native WP registration form.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Members 3.2.0 has been releasedHello Chad,
I’ve been using WP-Members together with Theme My Login plugin without any issues.
It appears that the latest update is causing some sort of conflict with new user registrations on the TML registration page.
The following error is triggered, “Sorry, Username is a required field.”, even though the username is being entered. The error goes away when I deactivate WP-Members.
Any ideas?
- This reply was modified 6 years, 7 months ago by widecast.
Forum: Plugins
In reply to: [Yoast SEO] wpseo_get_valueYes, the $key needs to be set with the value that you are trying to retrieve.
Let’s say your original function was:
wpseo_get_value('metadesc');
Try replacing it with:
WPSEO_Meta::get_value('metadesc');
Forum: Plugins
In reply to: [Yoast SEO] wpseo_get_valueI had the same issue.
Instead, you’ll need to pull the custom post meta values like this:
$string = WPSEO_Meta::get_value( $key, $postid );