Quote:
Originally Posted by Kiint
What I would like on this is for it to show recurring events up to 4 weeks in advance, so if i had an event scheduled for every wednesday then the widget would show this event 4 times, plus any other events inbetween them, eg:
weekly event
single event
weekly event
weekly event
monthly event
weekly event
etc etc
with a limit of 10 events,.. possible?
|
all that's a bit more than I can do code wise =S sorry... what I had to do on mine was enter recurring events individually (i used sql to do that on the database end - i.e. insert into _events - used an online unix date converter for dates

)
but
you set your limit of events in the widget code itself:
PHP Code:
$show_count = 5;
by changing the '5' to whatever you want... 10, 15, 20