Rank help

iPhonefreak

Paragon
Joined
Apr 7, 2012
Messages
1,521
Reaction score
0
FP$
6
Okay, so last night I was trying to remove the written ranks on my forum as I installed image ranks. I deleted the whole line, something along the lines of {postrow.RANK_TITLE}. If I just put that in there, it only shows the written rank and not the image, how do I get the image back in there and remove the written rank?
 
Code:
<!-- 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 -->
 
If you want to remove the rank text, remove this portion of the above code:

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

If that takes too much out add back in:

Code:
<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->

Hope that helps! 🙂
 
Back
Top Bottom