generosus
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Fastest Cache] Exclude content using id or class or shortcode?Hi Uwe,
Happy to help you. Our website also uses WP Fastest Cache and has a couple of pages where we also need to bypass the caching of certain page elements. You can solve your issue two different ways (as we did):
- Hire a JS/PHP developer at upwork[dot]com.
and/or - Use the plugin, Content No Cache. (Useful Tip: Create a shortcode via filter or code snippet for generating your date/time, then use the shortcode as explained in the plugin’s Details section).
The above should work for you too!
Best wishes π
Thank you, Lynn! You won’t regret it π
Adding to my previous comment, please take a look a this comprehensive comparison between Cloudflare Turnstile and Google reCAPTCHA. Cloudflare Turnstile is the way to go!
Cheers!
Forum: Plugins
In reply to: [Comments - wpDiscuz] How to Change Form Autofill Background Color?Hi @geraltrivia,
Thanks for your time and assistance. That’s a lot of work π
If necessary, I will definitely use your solution. Meanwhile, I’ll try to come up with a filter that will take care of my initial request.
Cheers!
Forum: Plugins
In reply to: [Comments - wpDiscuz] Social Login Agreement Box Does Not Close SmoothlyHi @gvectorssupport,
Thank you for your time and assistance. Issue solved.
As it turns out, there was a custom CSS rule in our plugin settings that was causing this issue.
The CSS rule that caused this issue was:
#wpdcom .wpd-social-login-agreement {
padding-bottom: 20px!important;
}To fix this issue, I replaced the above CSS rule with the following: (Note: Use of !important not required when using your plugin’s styles CSS feature)
#wpdcom .wpd-social-login-agreement {
padding: 20px 30px 20px 30px;
}Again, thank you.
Hi Lynn,
Thank you for your detailed response. As stated before, I provided the framework for implementing the above feature request. Email validation can be implemented via other tools, functions, and filters that meet your security standards.
If the above cannot be solved by your developers then — as a minimum — it would be appreciated if you can implement the use of Cloudflare Turnstile as an option to reCaptcha. Many have requested this feature (via this platform and your feature request site), but nothing has been done. With Cloudflare Turnstile, plugin users can control and manage better the security of their Sign-Up forms created with your plugin. Google reCaptcha is antiquated and is quickly being replaced or favored by all other major forms and newsletter plugins.
Again, thank you. I look forward to Team Mailpoet implementing one (or both) of the above.
Hi @cyn92,
Thanks for that. In response:
- The changelog should be located under the plugin’s Development tab, not Details tab (per WP guidelines).
- It would be extremely helpful to add a “Changelog” link to your website’s footer to reflect what your shared.
Cheers!
Hi @kellymetal,
Thanks for that. Yes, fully aware of the “New subscriber notification” email offered by your plugin.
It would be great if you could add the badge notification (orange dot, in this case) to you plugin when a new subscriber signs up. It could be a counter badge and can be offered as a settings options (via toggle). Benefits are many:
- No more email notifications (i.e., clutter) when this feature is enabled in lieu of email notifications.
- Gives web administrators an immediate notification when they log into their WP dashboard(s).
- Serves as a friendly reminder to check number of subscribers vs allotment.
You have the details now, so you’re welcome to add this topic to your development roadmap. I bet all of your users will appreciate this new feature!
Cheers!
hi @guicmazeredo,
Thanks for that. As stated in my first post above, reCaptcha is not a subsitute for bad actors that spam accounts by using a different (bogus) email address every time. Please try it yourself. reCaptcha will not stop them.
So, implementing a filter (similar to the one below), will help tremendously. The filter can be offered via your documentation (filters) and/or via a toggle in your plugin’s settings (WP Dashboard > MailPoet > Settings > Advanced). (Hint: Add the toggle to the Premium version of your plugin).
The third-party API can be obtained (at no-cost, no credit-card required) from quickemailverification.com. Instructions for obtaining the API are provided here.
Should not be difficult to implement. All you need is to create the hook (‘mailpoet_email_validation‘) and modify the function given below.
I provided the framework for this request, you can now make it happen π
Cheers!
——————–
add_filter( 'mailpoet_email_validation', function ( $result, $value, $form, $field ) {
if ( $field->get_input_type() === 'email' && $result['is_valid'] ) {
$request_url = add_query_arg(
array(
'email' => $value,
'apikey' => 'your_api_key_here',
),
'http://api.quickemailverification.com/v1/verify'
);
$response = wp_remote_get( $request_url );
$response_json = wp_remote_retrieve_body( $response );
$response_array = json_decode( $response_json, 1 );
if ( rgar( $response_array, 'result' ) !== 'valid' ) {
$result['is_valid'] = false;
$result['message'] = 'Email is invalid';
}
}
return $result;
}, 10, 4 );Forum: Plugins
In reply to: [WP Fastest Cache] Bug | Cache Deleted When Reactivating PluginHey Emre,
If you don’t mind me asking, please update your plugin code to ensure it does not delete cached files when your plugin is deactivated/reactivated? (only when your plugin is deleted)
Benefits:
- Cache is not lost when it’s necessary to deactivate plugins (including yours) for site testing or troubleshooting purposes.
- UX is not deteriorated.
- Eliminates long cache build-up times (especially when not using a CDN or using a sub-bar host).
- Your 1M+ customers will thank you π
To give you a vote of confidence, please check these topics:
https://wordpress.org/support/topic/inquiry-deactivating-plugin/
https://wordpress.org/support/topic/does-your-plugin-delete-all-cache-upon-deactivation/Thank you!
Hi @guicmazeredo,
I’m not referring to validating the email syntax alone, but also whether the email exists at all (to prevent spamming). So, for example, if you type “[email protected]” in the email field of your form, it still goes through (although I can confirm this is an invalid email address).
Adding an all-encompassing email validation feature to your plugin (apparently, not available at this time) would be awesome.
Here’s what our team uses (“Email validation by third-party API)”, for example, to validate email addresses submitted via our Gravity Forms.
Hope this helps.
Cheers! π
Your suggestion has been forwarded to the developers, and we will let you know if they decide to add the Test Email button.
As stated before, I will disposiiton this topic after I hear back from your developers. I own the topic.
Forum: Plugins
In reply to: [W3 Total Cache] Inquiry | Deactivating PluginThank you. That’s exactly how the plugin should work π
Temporary Solution: I changed the affected MailPoet file as noted here.
Unfortunately, the change I made will revert back to its original configuration at your next plugin update. So, it would be great if you can either update your plugin file as noted — and/or — provide a code snippet (i.e., filter) for this purpose.
Thank you!
- Hire a JS/PHP developer at upwork[dot]com.