I
II ExecBod
Guest
Many jQuery errors after upgrading to 2.3.0.
/src/XF/Template/Templater.php (public function fnCoreJs) not longer loads jQuery.
The current version (jquery.slim) does not have required functions (like $.ajax).
Temporary fix was to add the following to the PAGE_CONTAINER template
Code:
Continue reading...
/src/XF/Template/Templater.php (public function fnCoreJs) not longer loads jQuery.
The current version (jquery.slim) does not have required functions (like $.ajax).
Temporary fix was to add the following to the PAGE_CONTAINER template
Code:
Code:
<script src="https://code.jquery.com/jquery-3.6.3.min.js" integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
<script>$ = jQuery;</script>
Continue reading...