Hide Button & hide appointment title

Hi Elfsight team,

I want to use your calendar to give others an overview of my studio’s availability, but the issue is that it currently shows my clients’ names, which isn’t ideal for privacy reasons. Since the calendar is only meant to display which times are available or busy, there’s no need for event details to be shown.

It would be really helpful if there was a built-in option to hide the event titles without having to use custom CSS. Additionally, it would be great if the “Back” button could be hidden from “date:today” when the setting to not display past events is enabled, as it doesn’t really provide any value for users in that case.

Is there any way to achieve these features, or could they be considered for future updates?

1 Like

Hi there, @Kleines_Loft_Mietstu :wave:

Unfortunately, these options aren’t available in the settings, but we’ll try to consider them in the future updates :slightly_smiling_face:

As for now, you can use this CSS code to hide the event names:

.fc-event-title {
  display: none;
}

And this code will help you hide the Back button for the current week:

.fc-header-toolbar:has(.fc-today-button[disabled]) 
.fc-prev-button {
  display: none;
}