I’ve got a TV for the location which I’d like include in the listing under the event title:
[+location+]
if ( $events = $this->getEvents($sDate,$eDate,"id,pagetitle,description,content",$maxEvents) )
Quote from: Sylvaticus at Jan 22, 2009, 06:32 AMWell, I removed the underscore _ in every filename and TV name, and everything is working again. Thanks for the tip.
Quote from: Lukas at Jan 22, 2009, 06:10 AMI have exactly the same error. I will try your solution to night. Thanks.
when i updated my modx version from 0.9.6.2 to 0.9.6.3, the date time icon didn’t work anymore. i figured out that i had to rename the TVs since i used the standard names with the underscore in it (e.g. EasyEvents_Start). i don’t know if i’m the only person with this behavior, but maybe it would be a good idea to change the default names in the next release (in the easyEvents.config.php file as well as in the documentation).
But I cant get it to work! I’m not using any underscores but I still can’t see any arrows (or anything) besides the month or year, to change them. And in the event list/details I can only see the events for the current month.
Using Modx 0.9.6.3 and EasyEvents 1.5.3
if ( strtotime("$nextMonthYear-$nextMonth-01") <= strtotime($this->upperDateBoundary) )if ( strtotime("$nextMonthYear-$nextMonth-$startDay") <= strtotime($this->upperDateBoundary) )
fix the EasyEvents.class.php in the (original) line 462:
if ( strtotime("$nextMonthYear-$nextMonth-01") <= strtotime($this->upperDateBoundary) )
to be:
if ( strtotime("$nextMonthYear-$nextMonth-$startDay") <= strtotime($this->upperDateBoundary) )
It should solve your problem.
Ah Great! Thanx goldsky!
I had made all the changes in .class.php and easyEventsAjax.js .. but this last thing was unknown to me. Working fine now!
Only that the events that takes place in the nex month is not shown in the ListMini. Is this correct?

I also don’t really like that in the ListMini the dates of current month is shown at the top. Like: 01-02-2009 - 28-02-2009. Any solutions out there?
<div class="easyEventsList_item"> <div class="easyEventsList_time">[+eventTime+]</div> <<================ DELETE THIS LINE <div class="easyEventsList_title">[+title+]</div> <div class="easyEventsList_description">[+description+]</div> </div><!--end easyEventsList_item-->
Yep. But it will be shown up after you click the next-month arrow. I am also trying to figure out how to show the whole year.
see file easyEvents.config_en.php, in the "$_templates[’listItem’]"
<div class="easyEventsList_item"> <div class="easyEventsList_time">[+eventTime+]</div> <<================ DELETE THIS LINE <div class="easyEventsList_title">[+title+]</div> <div class="easyEventsList_description">[+description+]</div> </div><!--end easyEventsList_item-->