Recurrence Rules Not showing

Home Forums Calendar Products Community Events Recurrence Rules Not showing

Viewing 15 posts - 1 through 15 (of 17 total)
  • Author
    Posts
  • #1172717
    Alan
    Participant

    Hi. I can’t get Recurrence Rules to work for adding a community event. I just get a button that says “add another rule” but clicking that just refreshes the page?!

    I would prefer not to share the domain with the world as this site is in development.

    #1173059
    Josh
    Participant

    Hey Alan,

    Thanks for reaching out to us!

    It sounds like there is most likely a javascript error on the page that is preventing the sections from showing. If you don’t mind, could you provide a link to your site in a private reply and I can take a closer look to see what the potential issue may be.

    Also, a quick way to also test here would be to follow our Testing for Conflicts procedures and it will help in narrowing in on where to look for the root of the issue here.

    Thanks!

    #1173119
    Alan
    Participant

    This reply is private.

    #1173917
    Josh
    Participant

    This reply is private.

    #1175295
    Alan
    Participant

    This reply is private.

    #1175797
    Alan
    Participant

    Hi. Any idea? This site has to go live today. Thanks.

    #1175929
    Josh
    Participant

    Hey Alan,

    Thanks for following up here.

    I’m glad you were able to find the root of the issue here. Our plugins are designed to work with the version of jQuery shipped with WordPress core (currently at 1.12.4).

    When working with WordPress, it is best to rely on the shipped versions of resources since this is what is relied on by plugin developers. It’s only good to enqueue the later versions like this if you’re comfortable with diagnosing and addressing these potential version conflicts on your own.

    Let me know if this helps.

    Thanks!

    #1176114
    Alan
    Participant

    Now using this and exactly the same issue:

    
    // Load External jQuery
    function mytheme_enqueue_scripts() {
           wp_deregister_script('jquery');
           wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"), false, '1.x');
           wp_enqueue_script('jquery');
    }
    add_action('wp_enqueue_scripts', 'mytheme_enqueue_scripts');
    

    If I remove this then it works, but as previously mentioned I prefer to use the version on Google.

    #1177602
    Alan
    Participant

    Hi. Sorry to hassle but any news on this? Site is now live but this is broken.

    #1178414
    Josh
    Participant

    Hey Alan,

    If they’re the same versions, it’s possible that the dequeue is now loading differently due to the order of the arguments in your “wp_register_script“. Try moving the “false” to be the last argument there and see if that helps.

    Alternatively, I did take a quick look at your site and I do see that the site is still loading version 2.2.4 (https://cloudup.com/c0yXAmXVrfq). You might need to flush cache to get the correct version pulling onto your site.

    Thanks!

    #1179201
    Alan
    Participant

    This reply is private.

    #1180556
    Josh
    Participant

    This reply is private.

    #1180573
    Alan
    Participant

    This reply is private.

    #1181960
    Josh
    Participant

    This reply is private.

    #1187836
    Alan
    Participant

    This reply is private.

Viewing 15 posts - 1 through 15 (of 17 total)
  • The topic ‘Recurrence Rules Not showing’ is closed to new replies.