• Resolved gpaimember

    (@gpaimember)


    I think there might be a problem with the latest plugin update…even though the events are shown the calendar display (graphics) in both the widget/sidebar and page are not working.

    Hopefully this can be fixed soon.

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

Viewing 7 replies - 16 through 22 (of 22 total)
  • I had this issue, and saving the theme options did not work for me.

    Using Google developer tools, I saw that our problem was the plugin trying to load the css file using the server path to the theme (not the URL). For my site that was returning https://[SERVER-IP]/%5BDOMAINNAME.com%5D/wp-content/plugins/all-in-one-event-calendar/public/themes-ai1ec/vortex/css/ai1ec_parsed_css.css

    Instead of https://[DOMAINNAME.com]/wp-content/plugins/all-in-one-event-calendar/public/themes-ai1ec/vortex/css/ai1ec_parsed_css.css

    In case it helps anyone else, I was able to fix it by editing the code around line 170 of

    all-in-one-event-calendar/lib/css/frontend.php

    I replaced

    return Ai1ec_Http_Response_Helper::remove_protocols( apply_filters( ‘ai1ec_frontend_standard_css_url’, $theme[‘theme_url’] . ‘/css/ai1ec_parsed_css.css’ ) );

    with

    $themeurl=str_replace(‘[SERVER-IP]/[DOMAINNAME.com]’,'[DOMAINNAME.com]’,$theme[‘theme_url’]);
    return Ai1ec_Http_Response_Helper::remove_protocols(
    apply_filters(
    ‘ai1ec_frontend_standard_css_url’,
    $themeurl . ‘/css/ai1ec_parsed_css.css’
    )
    );

    That has fixed the styling for me.

    Theme options saving worked for me. thank you much

    We’re using an older theme which does not have a “Theme Options” menu item, so that option won’t work for us. We’re not seeing the IP address thing that was mentioned earlier, either, so that code hack is a no-go. I have one laptop that displays the calendar fine, but another that doesn’t — I think it is indeed a plugin caching issue. The CSS file is not on the web server, but some client browsers have the file cached so they’re ok for now…

    I’ll file a ticket with the plugin developers until we can get a copy of the CSS manually saved into that plugin cache folder (another hack).

    @bertpc Is it possible you might be looking in the wrong spot for theme options? Despite the name they are not part of your theme they are part of the calendar plugin and found under the Events submenu.

    Saving Theme Options worked for me. Thanks!

    Thank you hudojnyk for your post. I didn’t look at the good place. now it works !

    Tracy B

    (@weimkitty)

    @patchh thanks so much

Viewing 7 replies - 16 through 22 (of 22 total)
  • The topic ‘Events Calendar Not Displaying Correctly’ is closed to new replies.