madmuppet74
Forum Replies Created
-
Forum: Plugins
In reply to: [Collapse-O-Matic] won't collapse or expandI 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", "http://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", "http://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!
Forum: Plugins
In reply to: [Collapse-O-Matic] won't collapse or expandHello 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!