SpartakusMd
Forum Replies Created
-
Forum: Plugins
In reply to: [Disable Emails] The receivers are not added to the phpMailer instanceThat’s perfect.
Sorry for late response, just saw that email notifications were disabled.
Thank you
@wfmattr, is there a possibility to check the progress on the ticket FB784 ?
I’m glad it helped.
As an alternative, you can insert the code at the end of the file
functions.php
within your theme.I made a filter that removes?“wp-att-39255” :
function my_the_content_filter($content) { $content = preg_replace('/\s?wp-att-\d+/', '', $content); return $content; } add_filter( 'the_content', 'my_the_content_filter' );
It can be easily changed to replace “attachment wp-att-39255” (not tested, though it should work) :
function my_the_content_filter($content) { $content = preg_replace('/rel="attachment wp-att-\d+/"', 'rel="attachment"', $content); return $content; } add_filter( 'the_content', 'my_the_content_filter' );
We also manage a lot of WordPress sites (> 30, growing). We get a lot of notifications. About the outdated plugins, and I set a filter in my mail account to archive such mails ??
The option will be great with a warning, because we do the updates regularly and the “spam” is big. An I don’t want to turn off the scaner because we visit the sites and look at the scan results.
I hope you will change your mind and will add such an option.
It works for me too. I thing they have changed something. Meanwhile I chose to use another mail service ??
Well, no answer.
So, there isn’t any method to disable email notifications for plugin updates.
Well, I’m a bit disappointed ??
@wfbrian, Well, notiffications are on only for “Alert on critical problems”. In the issues report, plugin updates have the severity “Critical”, so I should disable “Alert on critical problems”. But I think that there are notoffication for other critical problems, so I don’t think it’s a good idea to turn it off.
Isn’t it possible to make a checkbox for updates also ? Or mayby a possibility to select if the updates are critical or should be treated as warnings ?
I’m going to contact OVH to ask for details why it isn’t working and how to solve the problem. If there will be some info, I’ll post it here.
Hi Raphael, did you succeed to send confirmation emails on OVH ? I have the same problem and I need the confirmation email ??
Forum: Plugins
In reply to: [WP Easy Columns] Errors in 4.1.4For the
Notice: Undefined property: EasyColumns::$use_custom
I posted an answer: https://www.ads-software.com/support/topic/error-message-406?replies=2#post-6967338Forum: Plugins
In reply to: [WP Easy Columns] Error MessageIs is a problem with the plugin.
To fix this you should change the line
233
in the filewp-content/plugins/easy-columns/easy-columns.php
from:<?php if($this->use_custom || !empty($this->options['custom_css'])){ ?>
to:
<?php if($this->options['use_custom'] || !empty($this->options['custom_css'])){ ?>