• Resolved AndyCats

    (@andycats)


    This may be similar to the “Editing Event Dates / Times Doesn’t HOLD” thread, but I’m not sure.

    I’m trying to set up a recurring event, but I can’t change the “Repeat every” or “until” fields.

    I feel like I’m doing something wrong, but can’t figure out what it is.

    Thanks for you help!

    https://wordpress.org/plugins/event-organiser/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter AndyCats

    (@andycats)

    Okay, as an FYI, there seems to be a theme conflict.

    I’m using WooThemes Function Theme.

    I disabled all the plugins and still got the issue. But when I installed it on another site with another theme, it works fine.

    Plugin Author Stephen Harris

    (@stephenharris)

    Hi Andy

    If you’re editing a recurring theme you’ll need to select the ‘edit occurrences’ checkbox before making any changes. (The reason is to prevent the plug-in from doing any unnecessary work when updating an event, but keeping the dates the same).

    Plugin Author Stephen Harris

    (@stephenharris)

    If you disable the theme in question temporarily that will also tell you if it’s a theme conflict. If it’s going to be anything it will be a JavaScript error on the page which you can check before hand using your browser’s console.

    Thread Starter AndyCats

    (@andycats)

    Thanks for you help! Still having the problem.

    It’s definitely a theme conflict. I mentioned I’m using WooThemes’ “Function” theme. Actually, I’m using a child theme. Switching to the parent theme allows the EO plugin to work properly.

    As far as checking the JavaScript error… Would I check that on the page where I’m trying to create a new event, or would it just show up on any page that I checked using my browser’s console?

    http:cheyennehills.glscheyenne.com/

    Thread Starter AndyCats

    (@andycats)

    Okay. I think I’ve solved the issue. This plugin was conflicting with the Google Maps Plugin I was using and I had adding some code to my functions.php file.

    The code I added was…

    function dequeue_eventorganiser_gmaps_scripts() {
    wp_dequeue_script( ‘eo_GoogleMap’ );
    wp_deregister_script( ‘eo_GoogleMap’ );
    update_option( ‘gmb_google_maps_conflict’, false );
    }
    add_action( ‘wp_print_scripts’, ‘dequeue_eventorganiser_gmaps_scripts’, 9 );

    function gmaps_api_js() {
    wp_enqueue_script( ‘gmaps-master-js’, ‘https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=places’, array(), ‘null’, true ); }

    add_action( ‘wp_enqueue_scripts’, ‘gmaps_api_js’ );

    What I did was to remove the dequeue event organiser script, but leave the rest and both plugins seem to be working.

    Thanks for your support.

    Topic Resolved!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Unable to access all fields.’ is closed to new replies.