First off all, this plugin is awsome. thanks!
now,
i'm echoing my event list inside a custom page like with those args.
$args = array(
'order' => 'ASC',
'posts_per_page' => 10,
);
the problem is that is when i have only few events but with some of them reoccurring. in that case i get the reoccurring events a bunch of times but i only need them to show once.
Is there a proper way of doing this (query like) or should i code an ugly check inside the loop so it will check if the event already shown or not, and skip the event if it had shown.
what do you say?
thanks.