Lynne |
02-04-2009 10:00 PM |
Add Last Poster to Social Groups list
1 Attachment(s)
For some reason the lastposter is not shown on the Social Groups list. To add it, open the socialgroups_grouplist_bit template and find these lines:
HTML Code:
$group[lastpostdate]
<if condition="!$show['detailedtime']">
<br /><span class="time">$group[lastposttime]</span>
</if>
ADD right underneath:
HTML Code:
<br />by <a href="member.php?$session[sessionurl]u=$group[lastposterid]">$group[lastposter]</a>
That's it!
edit: There is a cool idea from Mark.B in post 7:
Quote:
Originally Posted by Mark.B
(Post 1769152)
Add this to the end of Lynne's code to get a "Go To Last Post" link too...
Code:
<a title="$vbphrase[go_to_last_post]" href="group.php?$session[sessionurl]do=discuss&gmid=$group[lastgmid]#gmessage$group[lastgmid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" border="0" /></a>
Note there is a space at the very start.
|
|