
Re: Hiding IM Contacts And Bithdays From Guests
for mini calendar. you can edit it in CMS to view only registered users
also
you can try this
OPEN
templates/mg_themes/mini_cal_body.tpl
FIND
<tr><td colspan="7" class="row1" align="left"><span class="gensmall">{L_LESO}{L_WHOSBIRTHDAY_TODAY}</span></td></tr>
<tr><td colspan="7" class="row1" align="left"><span class="gensmall">{L_WHOSBIRTHDAY_WEEK}</span></td></tr>
REPLACE WITH
<!-- BEGIN switch_user_logged_in -->
<tr><td colspan="7" class="row1" align="left"><span class="gensmall">{L_LESO}{L_WHOSBIRTHDAY_TODAY}</span></td></tr>
<tr><td colspan="7" class="row1" align="left"><span class="gensmall">{L_WHOSBIRTHDAY_WEEK}</span></td></tr>
<!-- END switch_user_logged_in -->
for forum
OPEN
templates/mg_themes/index_body.tpl
FIND
<!-- BEGIN switch_show_birthday -->
{IMG_THL}{IMG_THC}<a href="{U_CALENDAR}" class="forumlink">{L_BIRTHDAYS}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="row1 row-center" rowspan="2" width="95" valign="middle"><center><img src="{BIRTHDAY_IMG}" alt="" /></center></td>
<td class="row1"><span class="gensmall">{L_WHOSBIRTHDAY_TODAY}<br />{L_WHOSBIRTHDAY_WEEK}<br /></span></td>
</tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
<!-- END switch_show_birthday -->
REPLACE WITH
<!-- BEGIN switch_user_logged_in -->
{IMG_THL}{IMG_THC}<a href="{U_CALENDAR}" class="forumlink">{L_BIRTHDAYS}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="row1 row-center" rowspan="2" width="95" valign="middle"><center><img src="{BIRTHDAY_IMG}" alt="" /></center></td>
<td class="row1"><span class="gensmall">{L_WHOSBIRTHDAY_TODAY}<br />{L_WHOSBIRTHDAY_WEEK}<br /></span></td>
</tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
<!-- END switch_user_logged_in -->