Hi,
We’re just about ready to go with our site launch, and I’m noticing at the EE4 Calendar add-on won’t display the actual event details in the calendar. All I can see on my iPhone 5S are the outlines of the boxes for the events. Is there a list view option I can turn on somewhere?
Brent
Hi, the issue here is there is limited space for showing all of that information but I’d like to double-check that something else, isn’t happening. What happens when you click on the events on the calendar on your mobile phone?
Tooltips are enabled, but I haven’t been using the <!–more–> tag as indicated in settings. I’m also not sure how well tooltips function on a mobile phone touch screen as a solution for someone to browse the calendar, since once you touch something and release, it’s going to take you to that item anyway.
You might try hiding the calendar from small screens with a media query, and display a list of events instead (with an event list shortcode on the same page). The calendar is very small on small screens, and the text that displays event names will not fit within those small boxes.
Here’s some example CSS you can add to your stylesheet:
@media only screen and (max-width: 767px){
#espresso_calendar{
display:none;
}
}
/* optionally hide the event list on large screens */
@media only screen and (min-width: 767px){
.cal-page-event-list{
display:none;
}
}
That second rule will target the event list if you wrap the event list shortcode with a cal-page-event-list div class. In EE4 that will look like this:
Fantastic! Thanks, we’ll try that Josh. Please leave thread open until we confirm we’ve got a solution.
Viewing 6 reply threads
The support post ‘EE 4 Calendar Add0-On Won't display events at phone resolution’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.