Hi Saxafrass,
in the meantime I found something that might be of help: please look at
https://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’, ‘https://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’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js’);
Hope I could be of help for you.
regards, Klaus