Viewing 6 replies - 1 through 6 (of 6 total)
  • WebBee

    (@bridgetdesigns)

    The events on my mobile version have also stopped working. Nothing happens when you click on the dot on a date with an event in mobile view. This was working up until recently. I have tried deactivating all plugins and the problem was still there.

    I encountered this same issue, along with another problem – the day abbreviations stopped working on the mobile view.

    After some digging I found a solution, although I believe there is a larger problem going on with the plugin. There’s a body class .tribe-mobile that gets applied by the file ../the-events-calendar/src/resources/js/tribe-events.js, but is failing because the variable tribe_ev.data.mobile_break returns NaN.

    I’m not 100% sure where the mobile_break value is being set, but if you add the following to your functions.php file it should resolve the problem.

    add_action( 'tribe_events_mobile_breakpoint', 'mobile_breakpoint' );
    function mobile_breakpoint() {
         return 500;
    }

    You can change ‘500’ to whatever you like – it looks like the default value is supposed to be 768.

    Same here. 4.0.7 is the last working version.

    WebBee

    (@bridgetdesigns)

    Thank you Louis that worked a treat!

    Yep, same here. Nice find Louis.

    Hey Louis,

    Thanks for pointing out the solution for the issue here. It’s always nice to see community members helping each other out ??

    Best,
    Nico

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Month view mobile version not showing events’ is closed to new replies.