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

    hi there, please see the home page link in Private, scroll down to the news section. suddenly, the post slider has stopped working.

    Site is 4.5.1 (Pagely) and theme is 3.5.4. we should be past all the bugs from this release, so i’m wondering what is going on? Thanks in advance for your assistance.

    #625877

    Hi charger70!

    Please add following code to Functions.php file in Appearance > 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');

    Regards,
    Yigit

    #625879

    Thank you, Yigit. is this something that will be fixed on the next release? I’m worried about overwrites on the file.

    #625882

    Hi!

    You are welcome!
    This is a WordPress related issue and it should be fixed in future for sure. It is in fact solved for most users. Please let us know if issue reoccurs.

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Post Slider has stopped working’ is closed to new replies.