Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #842089

    Hi, wordpress shows I have 1 plugin update, when all plugins are already updated. how can I fix this?

    thanks,

    #843195

    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

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