I have most of this figured out. I see that the mc-ajax.js file has been rewritten from the previous version. I am using a custom js file with the mc_ajax_js filter as my client doesn’t want the events in list mode to toggle. I have replaced my file with the updated file (minus the parts that hide the events). That has fixed the prev/next buttons problem. Only other problem that I am noticing is that I am now getting the “jQuery is not defined” error throughout out my site. This is the line of code that is causing the problem (new to v 2.5.8):
<script>(function ($) { 'use strict'; $(function () { $( '.mc-main' ).removeClass( 'mcjs' ); });}(jQuery));</script>
This is due to two reasons:
- I am enqueuing jQuery into the footer, not the header and this line of code is being injected before the jQuery library loads
- This line of code is being added to every page, even though I am using the “Insert scripts on these pages (comma separated post IDs)” text field under the “Script Manager” settings
Let me know if I can provide you with any further details.
Thanks.