Hi,
Why my full width sliders and contact form have disappeared after WP updated automatically?
Help,
XN
Add this to your function.php theme file
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
if you dont want to update new enfold theme ofcourse
I have Theme Functions function.php
And function-enfold.php
So, should I enter ONLY in the theme options functions.php?
Thanks
Xandria
Hi!
Yes that is correct please add it to functions.php
Best regards,
Vinay
Sorry, last thing, can I paste it anywhere or specific line? (Last time I added a code in there, it messed up my site)
Thank you so much Slavisa for the code. It works perfectly fine :)
Hey!
Glad you got it short out, but please note that is just a quick fix.
You will have to update both theme and wordpress and then clear your cache to make sure images come up properly.
Been on latest Jquery version, is something really needed to happen.
Regards,
Basilis
Hello Basilis,
I have checked on my dashboard and there is no update for Enfold. Currently it is 3.4.6 and WP is 4,5
How do I update Enfold?
Thanks
XN
Hi,
Could you try the following plugin in order to clear WordPress transients please: https://wordpress.org/plugins/artiss-transient-cleaner/
If that should not work then please try to update manually: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
Rikard
Hello Rikard,
I installed the plugin and updated the theme, My sliders are gone once again :(
I have inserted the code again. It’s working now :D