ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 26,185
- Points
- 823
Reputation:
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...