Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1136266

    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?

    #1136474

    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

    #1136475

    Hi,

    Also, remember to change YOUR-DOMAIN in the code to your actual sites URL.

    Best regards,
    Rikard

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.