Knowledge Base

How to : show icon on friends mini-profile
Article ID: 825
Written By: platinum_2007
Written On: Mon Jun 29, 2009 5:45 pm
Description: How to show a icon on your friends mini-profile beside their posts.
link to this article on phpbb.com: Select All
[kb=how-to-show-icon-on-friends-mini-profile]How to : show icon on friends mini-profile[/kb]
link to this article on your own board: Select All
[url=http://www.phpbb.com/kb/article/how-to-show-icon-on-friends-mini-profile/]Knowledge Base - How to : show icon on friends mini-profile[/url]

This Article will show you how to place a icon under a users rank if the user is on your friends list.

You can use any image you like, just save it to your /styles/prosilver/imageset/ directory.

Open up styles/prosilver/template/viewtopic_body.html and find :

Code: Select all
         <!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><dd>{postrow.RANK_TITLE}<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->{postrow.RANK_IMG}</dd><!-- ENDIF -->


after-add

Code: Select all
      <!-- IF postrow.S_FRIEND --> <dd><img src="{T_IMAGESET_PATH}/friend.gif" /></dd> <!-- ENDIF -->


You can place that code where ever you desire between <!-- BEGIN postrow --> and <!-- END postrow -->