Page 1 of 1

Image rank without the text rank

Posted: Fri Jan 20, 2012 9:19 am
by BeKh4t
Hello

I don't find how to hide the text of a rank. I would show only the image of the rank, as on the board LMO.
I use Bluespace.
What is the trick please ? :)

Re: Image rank without the text rank

Posted: Fri Jan 20, 2012 12:29 pm
by spaceace
phpbb has it set that way. i changed the templates here to only show the image.

open viewtopic_body.html

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 -->
replace with
Code: Select all
<!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><br /><dd><!-- IF not postrow.RANK_IMG -->{postrow.RANK_TITLE}<!-- ELSE -->{postrow.RANK_IMG}<!-- ENDIF --></dd><!-- ENDIF -->

Re: Image rank without the text rank

Posted: Fri Jan 20, 2012 5:12 pm
by BeKh4t
Yes ! Thank you very much Spaceace. It works perfectly ! :)