Quote:
Originally Posted by dartho
Edit the FORUMHOME template and search for the birthday block (Starts with <vb:if condition="$show['birthdays']"> and ends with teh next </vb:if>), remove it and replace with. You can then revert the forumhome_birthday_bit template (which should actually remove it as it is no longer used)
Code:
<vb:if condition="$show['birthdays']">
<!-- today's birthdays -->
<div class="navbar">{vb:rawphrase todays_birthdays}</div>
<div class="oldwindowbg">
<img src="{vb:stylevar imgdir_misc}/birthday.png" alt="{vb:rawphrase todays_birthdays}" />
<vb:each from="birthdays" value="row">
<a href="{vb:link member, {vb:raw row}}">{vb:raw row.username}</a><vb:if condition="$row['age']"> ({vb:raw row.age})</vb:if>{vb:raw row.comma}
</vb:each>
</div>
<!-- end today's birthdays -->
</vb:if>
|
Perfect! Works very good!