Updated Enfold to 3.5.2 and still have problems ( hessel.org).
Here are 2:
– Images placed within color box not displaying
– Post sliders have no content
I realize the original post did not give enough details. To better explain:
-For the images within a color box:
An example is on the home page (hessel.org). There are 2 advanced layer sliders (rotating photos and Follow Jesus motto) followed by a color section (now renders as an off-white row). Within the color section are 4 image media elements, each with a link). None of the images display although the links are active.
NOTE: the 2 advanced layer slider containers are now larger than their content. You’ll note the background color displays below each slider.
The Post Sliders example http://www.hessel.org/really-week-5/:
There are 2 at page bottom. One labeled CURRENT SERIES, the other PREVIOUS SERIES. No content displays, nor are the links active.
Thank you n advance for your help.
Terry
Hey!
Please add following code to bottom of Functions.php file in Apperance > Editor
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');
Cheers!
Yigit
You’re a genius!
That fixed all I’ve found so far.
Terry