Tagged: LayerSlider, update
Hello,
My WP dashboard is continually showing there is an update needed even after doing all updates.
Latest WP, Enfold 4.6.1
I’ve finally figured out that it’s the bundled layerslider I have 6.8.1 and the newest version is 6.9.2.
My understanding is that this gets updated with the Enfold theme so I’m not sure why it’s not updating?
Hey Cynthia45,
Please try adding this to your functions.php file if you want to remove the notification:
//Remove layerslider update notification
function remove_ls_update_notification($value) {
if($value) {
unset($value->response['https://YOUR-DOMAIN/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php'] );
return $value;
}
}
add_filter('pre_site_transient_update_plugins', 'remove_ls_update_notification');
The bundled version is usually a few versions behind the latest version since we develop and test with the version included in the theme.
Best regards,
Rikard