How do I get the events in the calendar overview?

I try to show the events that I created in the overview of the calendar. However, nothing is shown here, it seems that there are no events.

The calendar is added to the 'root' group, so not in a sub group but on the community itself. This widget is shown on the homepage.

Note: I do know how to get a list in a seperate widget. However, I do want the event (or an icon for an event) to be shown within this calendar. So you see that i.e. on the 18th there is an event. It now just seems empty, only the current date is marked. 



additional info
[edited by: Irene van der Zanden at 1:44 PM (GMT 0) on Mon, Sep 12 2022]
  • Hi, it looks like you are using the widget in a sidebar and here the actual items are not displayed, they are rendered but hidden by the widget styling

    You would  need to override the widget styling, its related to the @{small-sidebars} variable specifically "li { display: none; }"

    			tbody {
    				border:solid 1px -evo-decrease-contrast(-evo-themeconfig-color('backgroundColor', #FFFFFF), 31%, -evo-themeconfig-color('foregroundColor', #11171A), -evo-themeconfig-double('contrast', 0));
    				td {
    					height: 60px;
    					ul.event_list{
    						.scale_replaced_icon(-evo-themeconfig-unit('baseFontSizeValue', 14px) * 2);
    						li { display: none; }
    						color: -evo-decrease-contrast(-evo-themeconfig-color('foregroundColor', #11171A), 36%, -evo-themeconfig-color('backgroundColor', #ffffff), -evo-themeconfig-double('contrast', 0));
    						display: block;
    						margin: 0 auto;
    						position: relative;
    						top: -(-evo-themeconfig-unit('baseFontSizeValue', 14px)  * .75);
    					}
    				}
    			}