• Resolved jlhiggs

    (@jlhiggs)


    Since updating to 6.4.4, the calendar view seems to be enforcing the the “small calendar” (only coloured circles are displayed on dates that have events, and in the markup, the calendar div has the “size-small size-fixed” CSS classes). I notice in this update, there’s mention of being able to set a fixed-size calendar, and I guess it’s defaulting to fixed small, however there doesn’t appear to be anywhere in the settings to actually change this: We don’t want a fixed calendar, but a responsive one, displaying the “full-size calendar” on wider screens, the way it was in the previous version.

Viewing 8 replies - 16 through 23 (of 23 total)
  • You can bring back the old responsive behavior without modifying the plugin code by using the following code snippet

    add_filter( 'em_calendar_get_default_search', function( $atts ) {
        $new_atts = $atts;
        unset( $new_atts['calendar_size'] );
        return $new_atts;
    } );
    

    Same problem. I have dozens of clients complaining about this new view. Hoping this gets resolved soon!

    same! the suggestion of the hook above does not enact the responsiveness – stays large all the time. HELP

    The hook I suggested is responsive.

    I am having the same issues with this plugin. Any ideas when there will be an update?

    Your guess is as good as mine.

    I don’t know if this will work in your case, but inserting the calendar via shortcode and setting calendar_size to large is working for me.

    [events_calendar long_events=”1″ calendar_size=”large” limit=”3″  scope=”all”]

    Plugin Author Marcus

    (@msykes)

    Hello everyone, I’m sorry for not having responded to this thread earlier. I know it has been way way overdue!

    The calendar is to remain responsive, we also had options to force a specific size but this wasn’t available on the main events page since it’s not using shortcode. The suggested PHP snippets were correct, but we’ve now added a ‘default calendar size’ option that’ll prevent this confusion for future users, available under Settings > Formatting > Calendar

    This is already available in dev version 6.4.10.1, which exclusively adds that option and is therefore completely safe to update to even in production.

Viewing 8 replies - 16 through 23 (of 23 total)
  • You must be logged in to reply to this topic.