Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #892504

    Hi,
    I have an update notification available in my extensions, while no updates are available. I have this problem on many of my sites with Enfold.
    Do you have an idea of the reason?
    Thanks a lot

    #892518

    Hey Luc,

    Notification comes from bundled version of LayerSlider plugin. We have already added a code snippet to disable it however it does not seem to work. We have informed our devs.

    If you would like to use a workaround for the time being, 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

    #892533

    Thanks a lot Yigit

    #892535

    Hi,

    You are welcome!

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘notification update axtension dashboard but no update disable’ is closed to new replies.