Home › Forums › Calendar Products › Events Calendar PRO › List and Week View does not work when clicking on "next events"
- This topic has 10 replies, 3 voices, and was last updated 8 years ago by
Sky.
-
AuthorPosts
-
April 9, 2018 at 5:08 pm #1501086
Jim
ParticipantI love the plugin, but I appear to be having an issue when I switch to “list view” and “week view”, it will display the first 4 events and then if I click “next events” it just spins and does not change to the next events. I changed to the twentysixteen theme and I did not have this problem, so I believe that I have a theme conflict. I also disabled all of the plugins with my theme active and I still had the problem.
I am hoping that you can help me figure out the issue, i am about to launch my site so it is important that I figure this out.
thanks
April 11, 2018 at 11:29 am #1504607Sky
KeymasterHi Jim!
I’m sorry to hear that you’re having issues with our plugins working with your theme. While we are limited in the amount of support we can provide for third party themes and plugins, I will try to help sort this out if I can.
Can you tell me the name of your theme if it is freely available on the WordPress repository? Or, can you provide me with a copy of the latest version of the theme you are using? You can upload the zip file to a file-sharing service such as dropbox, and post the link here in a private reply. If you have a child theme, I will need a copy of that as well.
Thanks,
SkyApril 11, 2018 at 11:37 am #1504620Sky
KeymasterJim,
Actually, I looked at the files loading on your site, and figured out what theme you are using. This is actually a long known issue, and is due to the Cherry Framework using a very old version of jQuery. You can try removing the version they load and replacing with a more modern version by adding the following snippet to your child theme’s functions.php.
add_action('wp_enqueue_scripts', 'update_jquery_for_cherry_framework', 11);
function update_jquery_for_cherry_framework() {
wp_deregister_script('jquery');
wp_register_script('jquery', '/wp-includes/js/jquery/jquery.js', false, false, true);
wp_enqueue_script('jquery');
}
You do not need to upload your themes here for me.
Let me know if that works for you!
Thanks,
SkyApril 21, 2018 at 12:22 pm #1512993Jim
ParticipantThis reply is private.
April 22, 2018 at 5:04 am #1513140Jim
ParticipantThis reply is private.
April 23, 2018 at 8:22 am #1513811Sky
KeymasterThis reply is private.
May 2, 2018 at 10:28 am #1521227Jim
ParticipantThis reply is private.
May 3, 2018 at 7:09 am #1521988Sky
KeymasterHi again,
The functions.php file is loaded from WordPress themes and child themes. If you are using a child theme, adding your custom code to it’s functions.php is the easiest way to make customizations.
You can read more about functions.php files in the WordPress Codex.
If you are not using a child theme, then you may need to create a functionality plugin to add your custom code. If you’re not sure how to do that, but you still want to proceed, you might check out this free plugin to help: https://wordpress.org/plugins/functionality/
In the console messages you posted, I see one error, and it is due to the older version of jquery being loaded, as described earlier.
Thanks,
SkyMay 5, 2018 at 10:34 am #1523686Jim
ParticipantThis reply is private.
May 7, 2018 at 5:45 am #1524185Sky
KeymasterJim,
Awesome! Glad you got it working!
Let us know if you have any other questions or issues in the future.
Thanks,
Sky -
AuthorPosts
- The topic ‘List and Week View does not work when clicking on "next events"’ is closed to new replies.
