MyBB Hacks

Full Version: Avatars in Index Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Hello guys,any one knows how to display avatars of last post's user in the index page ?
Ya I saw that already, don't have paypal to buy that stuff.
Display Avatars in Threadlist, I want avatars in index page. I already have avatars in threadlist.
Dosent seem to work Frown
Try this.

PHP Code:
<table>
<tr>
<td align="left" valign="center"><img src="{$mybb->user['avatar']}" alt="Avatar" width="50px"; height="50px" /></td>
<td>
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}</span>
</td>
</tr>
</table>


replace your    forumbit_depth2_forum_lastpost  in Temlpate   Forum Bit Templates.

Works, but thing is it shows only my avatar everywhere.

I think its bcz of $mybb->user['avatar']}
Did you try to put the avatar code {$forum['avatar']} in your forumbit_depth2_forum_lastpost template to make sure whether the field already loaded?
Pages: 1 2 3
Reference URL's