Viewing 24 posts - 1 through 24 (of 24 total)
  • Author
    Posts
  • #857522

    Hi,
    The LayerSlider plugin which came with my Enfold purchase is ready to be updated, however, it is asking for my purchase license. I input my Enfold purchase license which was unsuccessful.

    Where can I find the LayerSlider purchase code which will allow me to update?

    Thanks :)

    #857546

    Hey,

    Thanks for contacting us :)

    Since LayerSlider is bundled in Enfold, you do not get a separate license. We include updated version of LayerSlider in Enfold updates after making tests.
    If you would like to remove the notice, 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;
        }
    }

    Cheers!
    Yigit

    #857548

    Hey evivecare,

    Enfold comes with a bundled version of LayerSlider. In order to update, you would need to purchase a separate licensed version from Envato.

    Best regards,
    Jordan Shannon

    #867744

    hey there,

    is it possible to use the snippet above in my enfold-child?

    f.e. in the functions.php?

    • This reply was modified 7 years ago by volmering.
    #867751

    Hi!

    Please update Enfold to the latest version 4.2 – https://kriesi.at/documentation/enfold/updating-your-theme-files/. We have disabled the notification so extra code will not be necessary any more :)

    Best regards,
    Yigit

    #868035

    hey yigit,

    these are really good news! thanks alot.

    #868187

    Hi,

    Glad we could help and sorry for the problems. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #882132

    hey yigit. the problem is back :-(

    #882279

    Hi,

    You are being asked to purchase a license again?

    Best regards,
    Jordan Shannon

    #882280

    nope, its just the message to update a plugin (red dot) cause of the layerslider

    #882284

    Hi,

    This could possibly be a mis-configured version number on one of the plugins present on your site.

    Best regards,
    Jordan Shannon

    #882869

    no its not!

    do you know the layerslider-problem jordan?

    #882911

    Hi,

    Yes, correct me if I’m wrong, but you already have the updated LayerSlider, but you are still being asked for the purchase license and being notified of the need to upgrade.

    Best regards,
    Jordan Shannon

    #882944

    hey jordan, i think its a missunderstanding :-)

    i talk about my reply #867744 in this thread and yigits answer #867751 :-) maybe im wrong here, but i thought this is the shortest way.

    ita all about the notification from the layerslider :-)

    ps: i bought an extra license. but this helps only for 5 sites.

    #883236

    Hi,

    Apologies for the misunderstanding. Was this same issue occurring on the same 5 sites mentioned above?

    Best regards,
    Jordan Shannon

    #883280

    yes. i got this notification on all of my enfold websites (more then 50).

    when enfold got a fresh update its fine for while. but then layerslider got an update – and the notification is back untill enfold got an update again. and so on and so on.

    the story before:
    i wrote to kriesi support via mail. they told me to buy 1 layerslider-licence. this should help for all my websites. wrong. only 5 sites with 1 licence possible.

    then yigit comes up with this snippet:
    // 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;
    }
    }
    the rest you can read above

    • This reply was modified 6 years, 11 months ago by volmering.
    #884529

    Hi,

    the story before:
    i wrote to kriesi support via mail. they told me to buy 1 layerslider-licence. this should help for all my websites. wrong. only 5 sites with 1 licence possible.

    Did you deactivate the theme’s layer slider configuration and install it as a stand alone plugin for every website?

    // https://kriesi.at/documentation/enfold/deactivate-the-layerslider-plugin/

    The filter that @Yigit provided should remove the notification in the plugin’s panel.

    Best regards,
    Ismael

    #884647

    hey ismael,

    yes i installed it as a stand alone plugin. after installing it 5 times i got the message that only 5 sites possible with that licence i bought.

    i would like to use the filter yigit provides, but i need it for my functions.php in my enfold-childs. would be great if theres a solution for it :-)

    #885069

    Hi,

    yes i installed it as a stand alone plugin. after installing it 5 times i got the message that only 5 sites possible with that licence i bought.

    I’m sorry for the misinformation. We are not aware of the limitation. You should probably contact the plugin author for a refund if that’s what you want.

    i would like to use the filter yigit provides, but i need it for my functions.php in my enfold-childs. would be great if theres a solution for it :-)

    Do you mean that the sites don’t have a child theme? You can install the following plugin as an alternative.

    // https://wordpress.org/plugins/code-snippets/

    Best regards,
    Ismael

    #885083

    hey ismael,

    no, all my enfolds sites have a enfold child. but yigit provides to change wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php

    and i would like this solution for my childs :-) for example in my functions.php in my child

    #885114

    Hey!

    Ah. I see. I’ll ask Yigit about it. I can’t test the modification becasue I can’t reproduce the same issue on my installation.

    Best regards,
    Ismael

    #885155

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('site_transient_update_plugins', 'av_remove_ls_update_notification');
    function av_remove_ls_update_notification($plugins) {
    	$layerslider = str_replace( '\\', '/', get_template_directory() . '/config-layerslider/LayerSlider/layerslider.php' );
        if($plugins) {
            unset($plugins->response[ $layerslider ] );
                return $plugins;
        }
    }

    Best regards,
    Yigit

    #885186

    still there

    • This reply was modified 6 years, 11 months ago by volmering.
    #885259

    Hi,

    That is true. It was gone for a while but now it is back.

    I am afraid disabling the notice on child theme will not be easily possible. However, we will inform our devs regarding the issue. Notice should have been disabled out of the box. I believe it will be corrected in upcoming update :)

    Best regards,
    Yigit

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