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.
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:
