Hi,
I updated to WP 4.5 and all my images and sliders vanished.
1.After reading the thread about the same the solution was to upload:
https://gist.github.com/Kriesi/99a2a977b93c0f1bced99f093c82c7ba to enfold/js/avia.js
2. Did that and all images came back home.
3. Next hurdle-the content blocks in the Avia Layout Builder. They have not come home.
Image of backend: http://prntscr.com/as0ikf
Image of frontend: http://prntscr.com/as0ir8
4. As you will see, we now have the images back, but no backend content blocks to edit.
5. I also updated to the most current Enfold version as of today April 13, 2016 @ 9pm PST.
Please let me know if there is a solution or a new update that I will need to wait for.
Taja
Hey Taja!
In the theme options Enfold > Theme Update You should see the theme version is 3.5.2
Then you can add the below code in functions.php
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');
After the changes before you review the site please hard reload and empty browser cache and review the site again.
To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.
Best regards,
Vinay
Yes! That worked! Thank you.
Hi!
Glad we could help :) We have put together some useful info about enfold theme please feel free to check it out here – http://kriesi.at/documentation/enfold/
Cheers!
Vinay