Viewing 3 replies - 1 through 3 (of 3 total)
  • Same situation here. Mine was working for about a year, but when I updated to 3.5.2 its now just not working, hover shows a hand to click, but clicking doesnt open. Tried chrome, ie, ff.

    Thread Starter madmuppet74

    (@madmuppet74)

    Hello again – I would love some help on this. It’s the only plug-in I’ve been able to find that potentially meets my needs, but I can’t get it to work at all.

    I’m happy to make a donation if someone could provide me some troubleshooting support. Once this works, I can get the rest of my site up and running.

    Thanks so much!

    Thread Starter madmuppet74

    (@madmuppet74)

    I got it to work. It was a compatibility problem with my theme (Cascade from WordPress purchased on themeforest.net). There were two issues:

    1. In my theme’s functions.php, I was loading an older version of jquery:

    wp_deregister_script("jquery");
    wp_enqueue_script("jquery", "https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js", array(), "1.6.4");

    I needed to change it instead to:

    //wp_deregister_script("jquery");u
    wp_enqueue_script('jquery');
    //wp_enqueue_script("jquery", "https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js", array(), "1.6.4");

    Essentially I just commented out the wp_deregister_script() and the wp_enqueue_script() of the older version of jquery and add a simple wp_enqueue_script(‘jquery’) in their place.

    2. My theme was loading pages via Ajax, and I needed to disable that. It doesn’t seem to have affected any other critical functionality.

    Hope this helps others!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘won't collapse or expand’ is closed to new replies.