Hello ,
Here i will let you know how to change the upcoming events module to show only the events from today :
go to /modules/mod_rsevents_upcoming/helper.php
at line 29 please enter :
$today = strtotime(date('m/d/Y',time()));
after delete line 44 and 45 and paste in this code :
$where .= " AND (e.EventStartDate < ".$today." AND e.EventEndDate > ".$today.") OR (e.EventStartDate >= ".$today." AND e.EventStartDate <= ".($today+86399).")";
Now , you will see all the today events that run by this rules :
- events started in the past(earlier than yesterday 23:59) and haven't finished till today 00:00
- events started today 00:00 to 23:59