KlausHermann
Forum Replies Created
-
Forum: Plugins
In reply to: [Arconix FAQ] Arconix toggle functions and latest jqueryThank you John for yor help. I’m still a beginner using WordPress, PHP, etc., so I really don’t know anything about the proper parameters. I just ran into the problem of your nice toggle functions not working any more, applied the fix suggested by JQuery and was happy to see that everything worked fine.
But your suggestion sounds sensible, so I applied it.
Thanks!
Forum: Plugins
In reply to: [Arconix FAQ] Arconix toggle functions and latest jqueryHi Saxafrass,
in the meantime I found something that might be of help: please look at
http://blog.jquery.com/2012/12/17/jquery-1-9-beta-1-released/There you’ll find a suggestion how to load the missing functions of the “old” JQuery version.
Following that advise I added the line:
wp_enqueue_script(‘jquerymigrate’, ‘http://code.jquery.com/jquery-migrate-1.0.0b1.js’);
to my functions.php, just following the line calling the current JQuery version.
This worked perfectly for me. Arconix Shortcodes are working again. 🙂
Instead of calling the latest JQuery AND the patch you may also just call up the old 1.8.3 version, if the latest JQuery version should not be nessecary. Use something like:
wp_enqueue_script(‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js’);
Hope I could be of help for you.
regards, Klaus