• Resolved alan1950

    (@alan1950)


    Hi, Due to Covid I’ve not needed to update the calendar since before the last update(s). When I create an event I find that the “Choose Location” box does not give me the option to select any location. Can you advise please?

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • b00ngarten

    (@b00ngarten)

    I have the same issue. Mine started with the WordPress update on Feb 22nd to version 5.6.2.

    Kind regards, Ben

    Plugin Author Joe Dolson

    (@joedolson)

    This should be fixed in the latest release.

    Same issue. Plugins updated, but still on 5.6.1. Joe, you mean the latest release of WP or Mycal will fix this?

    Having same issue with WP version 5.6.2 and using My Calendar version 3.2.15. Noticed this a few weeks ago after not using system due to COVID. Since more are having the same issue is there an update coming to fix it?

    Thread Starter alan1950

    (@alan1950)

    Further info: I just re tried this using the latest release of My Calendar (3.2.15). It seems that you will get a dropdown list only when you have typed in the first complete word of the location (so if the location is “White House” the drop down list appears after you type “White”.

    Thread Starter alan1950

    (@alan1950)

    Further information, I installed My Calendar 3.2.15 on a new test sub-domain, and the location dropdown works fine.
    However deleting and re-installing on the live site does NOT fix the problem.

    Plugin Author Joe Dolson

    (@joedolson)

    It’s not a dropdown; it’s an autocomplete search form. It converts between autocomplete and dropdown based on the number of locations you have stored. The default switch happens at 25 locations; that can be altered using the mc_convert_locations_select_to_autocomplete filter, e.g.:

    add_filter( 'mc_convert_locations_select_to_autocomplete', 'my_autocomplete_limit', 10, 1 );
    function my_autocomplete_limit( $limit ) {
        return 100;
    }

    Using that code, the switch would only occur if you had more than 100 locations.

    Plugin Author Joe Dolson

    (@joedolson)

    In the next release I’m going to change the switch limit to 50, rather than 25, I think. The current cut off is too low.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Cannot select a location when creating an event’ is closed to new replies.