Hi, wordpress shows I have 1 plugin update, when all plugins are already updated. how can I fix this?
thanks,
Hi,
That is because of LayerSlider plugin. You can either ignore it or apply following workaround:
Please go to wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php file via FTP and insert following code on 13th line
// Remove LayerSlider's update notifications
add_filter('site_transient_update_plugins', 'av_remove_ls_update_notification');
function av_remove_ls_update_notification($value) {
if($value) {
unset($value->response[plugin_basename(__FILE__)]);
return $value;
}
}
Best regards,
Yigit
