I currently have one calendar being populated by one weblog. Until recently, the use of the calendar was solely for upcoming events. I would now like to add entries from another weblog to also populate the calendar. Any idea how this can be accomplished easily? I’ve included the code of the current calendar index page.
<h1>Event Calendar</h1>
<!-- calendar -->
{exp:repeet:get_ids weblog="event" parse="inward" calendar="yes"}
{exp:repeet:calendar switch="calendarToday|calendarCell" weblog="event" entry_id="{repeet:entry_ids}" interval_field="event_repeat" include_field="event_include_dates" exclude_field="event_exclude_dates" show_future_entries="yes" show_expired="yes" dynamic="off"}
<table class="calendarBG" border="0" cellpadding="0" cellspacing="0" summary="Event Calendar" width="100%">
<tr class="calendarHeader">
<th colspan="5"><h2>{date format="%F %Y"}</h2><p></th><br />
<th><div class="calendarMonthLinks"><a href="http://{previous_path=calendar}" title="{previous_date format=">« {previous_date format="%F %Y"}</a></div></th><br />
<th><div class="calendarMonthLinks"><a href="http://{next_path=calendar}%22class=%22calendarMonthLinks" title="{next_date format=" class="calendarMonthLinks">{next_date format="%F %Y"} »</a></div></th><br />
</tr><br />
<tr class="calendarDayHeading"><br />
{calendar_heading}<br />
<td>{lang:weekday_long}</td><br />
{/calendar_heading}<br />
</tr></p>
<p>{calendar_rows}<br />
{row_start}<tr class="calendarRows">{/row_start}</p>
<p>{if entries}<br />
<td><br />
<div class='{switch}'><a href="http://{day_path=calendar/day}">{day_number}</a></div><br />
{entries}<br />
<div class="calendarEvent"><span class="calendarSpacer"> </span><a href="http://{title_permalink=calendar/info}">{title}</a></div><br />
{/entries}<br />
</td><br />
{/if}</p>
<p>{if not_entries}<br />
<td><div class='{switch}'>{day_number}</div></td><br />
{/if}</p>
<p>{if blank}<br />
<td class='calendarBlank'> </td><br />
{/if}</p>
<p>{row_end}</tr>{/row_end}<br />
{/calendar_rows}<br />
</table><br />
{/exp:repeet:calendar}<br />
{/exp:repeet:get_ids}</p>
<p><!-- /calendar -->