-
AuthorPosts
-
September 27, 2017 at 3:09 pm #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 :)
September 27, 2017 at 3:46 pm #857546Hey,
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!
YigitSeptember 27, 2017 at 3:47 pm #857548Hey 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 ShannonOctober 23, 2017 at 5:40 pm #867744hey 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.
October 23, 2017 at 5:43 pm #867751Hi!
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,
YigitOctober 24, 2017 at 9:36 am #868035hey yigit,
these are really good news! thanks alot.
October 24, 2017 at 1:39 pm #868187Hi,
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,
RikardNovember 27, 2017 at 9:35 am #882132hey yigit. the problem is back :-(
November 27, 2017 at 4:59 pm #882279Hi,
You are being asked to purchase a license again?
Best regards,
Jordan ShannonNovember 27, 2017 at 5:01 pm #882280nope, its just the message to update a plugin (red dot) cause of the layerslider
November 27, 2017 at 5:12 pm #882284Hi,
This could possibly be a mis-configured version number on one of the plugins present on your site.
Best regards,
Jordan ShannonNovember 28, 2017 at 9:14 pm #882869no its not!
do you know the layerslider-problem jordan?
November 28, 2017 at 10:55 pm #882911Hi,
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 ShannonNovember 29, 2017 at 1:23 am #882944hey 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.
November 30, 2017 at 12:13 am #883236Hi,
Apologies for the misunderstanding. Was this same issue occurring on the same 5 sites mentioned above?
Best regards,
Jordan ShannonNovember 30, 2017 at 6:04 am #883280yes. 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.
December 4, 2017 at 6:47 am #884529Hi,
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,
IsmaelDecember 4, 2017 at 2:48 pm #884647hey 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 :-)
December 5, 2017 at 2:34 pm #885069Hi,
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,
IsmaelDecember 5, 2017 at 2:55 pm #885083hey 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
December 5, 2017 at 3:44 pm #885114Hey!
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,
IsmaelDecember 5, 2017 at 5:05 pm #885155Hey!
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,
YigitDecember 5, 2017 at 6:40 pm #885186still there
- This reply was modified 6 years, 11 months ago by volmering.
December 5, 2017 at 11:49 pm #885259Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.