Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #614078

    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

    #614849

    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

    #614860

    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

    #614887

    You’re a genius!

    That fixed all I’ve found so far.

    Terry

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Issues after WordPress update to 4.5’ is closed to new replies.