I just took the code from a previous version of this addon, and incorporated it in this current one... just changed this in the
eventdata_presave hook:
Code:
/* ORIGINAL CODE
$lv_vb_eventforums_threadtitle = $this->fetch_field('title');
ORIGINAL CODE */
/* NEW CODE */
$dateformat = "[m.d] l, M. jS";
$lv_vb_eventforums_threadtitle = vbdate($dateformat, $this->fetch_field('dateline_from'),false,true,false,true) . " // " . $this->fetch_field('title');
and then I just installed "Default Sort Field/Order for Forumdisplay" that allows me to set up the default sort in that event forum by Title instead of whatever else is set by default.
now, what I am curious about is, is there any way to add an option to this mod where all the expired events (check the expiry date of the event in calendar) would be moved to a specified forum every time a cron (to be set up by script) is run?
that would save me the hassle of moving all the expired events to another forum and archiving them in there manually...