I'm getting this error every time I commit things in admin bar (pieces, pages). I have no idea why. I use apostrophe version: "^2.220.7". Anyone had a similar problem?
ApostropheCMS - why I'm getting error message while commiting changes in admin bar?
97 views Asked by justyna At
1

Apostrophe 3.x does not have this issue because it is completely namespaced, but in Apostrophe 2.x you do have to take care not to replace the version of jQuery that Apostrophe is using so that it does not lose its plugins, like the
jsonCallplugin.Your own custom frontend code, or something being imported by it (for instance via a raw HTML widget), is inserting a different version of jQuery, overwriting the version of jQuery that Apostrophe 2.x needs in order to function.
If you imported that different version of jQuery yourself, we recommend that you stop doing that and set the
jQuery: 3option to theapostrophe-assetsmodule instead, so that a modern version of jQuery is provided by Apostrophe.If it is happening because of a raw HTML widget that brings in third-party code that replaces jQuery, you can temporarily disable it by adding
?safe_mode=1to your URL and then edit the page and remove the offending widget.