Hi there, We have the latest version of the Enfold theme and all plugins updated. But plugin section still show that one plugin need to be updated. Is it the LAYERSLIDER plugin need to be updated? will we have to wait for a latest version of the theme where you will update layerslider? please suggest.
Hey vinayb,
Yes, since the LayerSlider is bundled with the theme you cannot update it individually unless you run the standalone version. I’m not sure about the notification though, I don’t get anything like that on my local version. Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.
Best regards,
Rikard
Hey!
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;
}
}
Regards,
Yigit