I have a page “Calendar” with al my calendar items. I didn’t find the solution to have the latest 3 items on my homepage.
Below you have my code on calendar page.
Oh, I just realized you are using a plugin. So you can’t do that. Maybe the plugin provides methods for sorting or limiting. If not, you would have to use php array methods.
Wow, I haven’t touched that plugin in a long time and it’s still in use. In addition to @lukasbestle’s answer you can do something like this in the calendar snippet:
foreach (array_slice($calendar->getEvents(), 0, $count) as $event):