OK- keep in mind, if you have two entries on the same day? It will show a {day_number} for EACH entry. The {entries} tag pair loops. IF that’s what you want, I believe the above should work. But- you need to make sure that for each weblog, you have a comment path specified. So- go to ‘Admin- Weblog Admin- Weblog Management’- edit the relevant weblogs and look in ‘Paths’. That’s where you specify it. Should basically be the url to the single entry page for that weblog- and when used by {comment_url_title_auto_path} it will take that url and just stick the url_title on the end of it.
NOTE- I screwed you up, because it should be {comment_url_title_auto_path} instead of {comment_auto_path} (which doesn’t stick the url_title on the end).
OK- does that bit make sense?
But like I say- IF you have two entries on the same day, it’s going to look a little weird. Which is why I usually make the {day_number} link to a multi-entry page that shows ALL entries for that day, rather than going to a single entry page. So:
{calendar_rows }
{row_start}<tr>{/row_start}
{if entries}
<td class='{switch}' align='center'><a href="http://{day_path=site/events}">{day_number}</a></td>
{/if}
{if not_entries}
<td class='{switch}' align='center'>{day_number}</td>
{/if}
And on site/events I’d have a weblog that pulls from all weblogs that are included in the calendar.
Just- different ways of going at it. I just wanted to be sure you ‘get’ what happens if there are two entries on a single day.