I have two seperate archive pages for these two categories. And on these archive pages I want to use the MTCalendar to provide a link to entries within the entry's respective category. I DO NOT want to be able to get to one category's entries from the other category's archive page.
However, If I try to specify one calendar to only display the links to one category (either Journal or Quickies, not both) I get empty cells where the other category had entries. And if I specify both categories, but leave one just without links, I get cells with repeated dates because I posted an entry in both categories that day.
Please see the calendars on the side of this page to see what I mean. Notice how some days in the calendar are completely blank? I'm a perfectionist, I know, but there has to be some way to fix this.
I've tried two plug-ins. Catentries and excludecat. Both were unsuccessful.
My code for my calendar is this:
CODE
<MTArchiveList lastn="4" archive_type="Monthly">
<ol><font face=webdings>6</font> <span class="quickietitle"><$MTArchiveDate format="%B %Y"$></span></font></ol>
<table border="0" cellspacing="4" cellpadding="0" summary="Monthly calendar" align="center" width="100%">
<tr class="quickiebody">
<th abbr="Sunday" align="center">Sun</th>
<th abbr="Monday" align="center">Mon</th>
<th abbr="Tuesday" align="center">Tue</th>
<th abbr="Wednesday" align="center">Wed</th>
<th abbr="Thursday" align="center">Thu</th>
<th abbr="Friday" align="center">Fri</th>
<th abbr="Saturday" align="center">Sat</th>
</tr><MTCalendar month="this">
<MTCalendarWeekHeader>
<tr class="quickiebody"></MTCalendarWeekHeader>
<td align="center" class="quickiebody">
<MTCalendarIfEntries>
<MTEntries lastn="1" category="Journal">
<a href="<$MTEntryLink$>" title="<MTEntryTitle>"><$MTCalendarDay$></a>
</MTEntries>
</MTCalendarIfEntries>
<MTCalendarIfNoEntries><$MTCalendarDay$></MTCalendarIfNoEntries><MTCalendarIfToday><font color="#FFFFFF"><MTCalendarDay></font></MTCalendarIfToday><MTCalendarIfBlank> </MTCalendarIfBlank></td>
<MTCalendarWeekFooter></tr></MTCalendarWeekFooter>
</MTCalendar>
</table>
</MTArchiveList>
<ol><font face=webdings>6</font> <span class="quickietitle"><$MTArchiveDate format="%B %Y"$></span></font></ol>
<table border="0" cellspacing="4" cellpadding="0" summary="Monthly calendar" align="center" width="100%">
<tr class="quickiebody">
<th abbr="Sunday" align="center">Sun</th>
<th abbr="Monday" align="center">Mon</th>
<th abbr="Tuesday" align="center">Tue</th>
<th abbr="Wednesday" align="center">Wed</th>
<th abbr="Thursday" align="center">Thu</th>
<th abbr="Friday" align="center">Fri</th>
<th abbr="Saturday" align="center">Sat</th>
</tr><MTCalendar month="this">
<MTCalendarWeekHeader>
<tr class="quickiebody"></MTCalendarWeekHeader>
<td align="center" class="quickiebody">
<MTCalendarIfEntries>
<MTEntries lastn="1" category="Journal">
<a href="<$MTEntryLink$>" title="<MTEntryTitle>"><$MTCalendarDay$></a>
</MTEntries>
</MTCalendarIfEntries>
<MTCalendarIfNoEntries><$MTCalendarDay$></MTCalendarIfNoEntries><MTCalendarIfToday><font color="#FFFFFF"><MTCalendarDay></font></MTCalendarIfToday><MTCalendarIfBlank> </MTCalendarIfBlank></td>
<MTCalendarWeekFooter></tr></MTCalendarWeekFooter>
</MTCalendar>
</table>
</MTArchiveList>
Thanks for help.