I am using this to feed Advisory information to an number of sites. Is there a way to suppress the warning in the widget if an RSS is empty? We have found a work around but I have to keep applying it every time the plugin is updated.
return _e(“There is a problem with the feeds you entered. Go to our support page and we’ll help you diagnose the problem.”, ‘wp-rss-multi-importer’);
exit;
}
with
if (!isset($myarray) || empty($myarray)){
$myarray = array();
//return _e(“There is a problem with the feeds you entered. Go to our support page and we’ll help you diagnose the problem.”, ‘wp-rss-multi-importer’);
//exit;
}