List and Week View does not work when clicking on "next events"

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.
Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1501086
    Jim
    Participant

    I 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

    #1504607
    Sky
    Keymaster

    Hi 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,
    Sky

    #1504620
    Sky
    Keymaster

    Jim,

    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,
    Sky

    #1512993
    Jim
    Participant

    This reply is private.

    #1513140
    Jim
    Participant

    This reply is private.

    #1513811
    Sky
    Keymaster

    This reply is private.

    #1521227
    Jim
    Participant

    This reply is private.

    #1521988
    Sky
    Keymaster

    Hi 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,
    Sky

    #1523686
    Jim
    Participant

    This reply is private.

    #1524185
    Sky
    Keymaster

    Jim,

    Awesome! Glad you got it working!

    Let us know if you have any other questions or issues in the future.

    Thanks,
    Sky

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘List and Week View does not work when clicking on "next events"’ is closed to new replies.