Hide categories in full calendar

Support forumCategory: QuestionsHide categories in full calendar
Richard asked 4 years ago
Hello, I decided to take another stab at the full calendar this evening from another angle, is it possible to hide all booking categories except confirmed in the full calendar. I am guessing using CSS it will be something along the lines of the ones below which get rid of the legend and the entries but would be scoped to the full calenda and ideally without leaving the unsightly gaps that these do (unless there is a better way to do this other than CSS). div.grape { visibility: hidden; } or [data-class="darkblue"] { visibility: hidden; } and for the entries: a.graffit { visibility: hidden; width: 0; height: 0; } The above were my initial attempts whilst messing about with the Stylus extension on Firefox. I think I am on the right path but not quite there. My test URL is: https://www.birminghamshotokan.com/full-calendar-test/ Thanks for any help
yasser_ali replied 4 years ago

Try to add this to the custom CSS of your theme
It should remove the pending and cancelled events

a.graffit, a.grape {
display: none;
}