How to remove the all-day text in the calendar list layout

If you are using one of the List layouts in your calendar, you might want to hide the all-day text that shows up.

Screenshot of the calendar showing the

In order to hide that information, you'll need to add a code snippet to your website and a CSS style.

add_filter( 'gravityview/calendar/options', function ( $options ) {
	$options['displayEventTime'] = false;
	return $options;
} );

How to add this code: Where to put code samples.

.fc-list-event-dot, .fc-list-event-graphic{
    display: none !important;
}

How to add this style: Adding custom CSS to your website.


Here's how the calendar will look after these changes:

Screenshot of the calendar after modifications

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us