Tagged: Enfold Child Update
I am running Enfold Child and my wordpress is showing an update is necessary. I took off all my plugins and then narrowed it down to Enfold Child.
Has others brought this to your attention? Anything that I can do?
Thank you, great theme.
Hey rdweitzman,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
I have the same problem.
Hi,
Please try this plugin to clear WordPress transients if you do not receive auto updates and make sure your API key is correct: https://wordpress.org/plugins/artiss-transient-cleaner/.
If it does not help, I am afraid you might need to update the theme manually – http://kriesi.at/documentation/enfold/updating-your-theme-files/
Unfortunately not all Server environments are able to make use of the auto update feature provided by ThemeForest :/
Best regards,
Yigit
Transient cleaner worked for me! Thanks :)
Hi,
@shanhard Glad it worked for you! :)
We will keep the thread open and will wait to hear from the creator of this thread. If you have any other questions or issues, please feel free to start a new thread.
Best regards,
Yigit
I spoke too soon! After installing and running that transient cleaner the update notification disappeared, but after the page refreshed, it returned.
Sorry!
I reverted to the main theme (removed the child) and the issue is still there for me.
I am using v4.1.2
Hi,
Sorry i misunderstood the issue :)
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;
}
}
Regards,
Yigit
BINGO!
That fixed it. Thanks again. :-)