Have you create a 'day list' menu item?
If you look at the code in the template override
// previous and following month names and links
$followingDay = $this->datamodel->getFollowingDay($this->year, $this->month, $this->day);
$precedingDay = $this->datamodel->getPrecedingDay($this->year, $this->month, $this->day);
?>
<div class="jevbootstrap">
<div id='jev_maincal' class='jev_listview jev_<?php echo $this->colourscheme;?>'>
<div class="row-fluid">
<div class="row-fluid jev-conference-day">
<div class="span4 previousmonth center" >
<?php if ($precedingDay) echo "<a href='".$precedingDay."' title='".JText::_("PRECEEDING_Day")."' >".JText::_("PRECEEDING_Day")."</a>";?>
</div>
<div class="span4 center">
<?php echo JEventsHTML::getDateFormat( $this->year, $this->month, $this->day, 0) ;?>
</div>
<div class="span4 nextmonth center">
<?php //if ($followingDay) echo "<a href='".$followingDay."' title='".JText::_("FOLLOWING_Day")."' >". JText::_("FOLLOWING_Day")."</a>";?>
</div>
</div>
</div>
The only reason $precedingDay would be empty is if you have a date limit but that would only affect year ends.
You'll see the followingDay has been commented out (just in case you want to use that).
If you'd like me to take a quick look can you include the URL and login details on the private site details tab below
JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!