How do I remove the rank name above the rank pic in phpBB3?

  • Thread starter Thread starter Deleted member 9315
  • Start date Start date
D

Deleted member 9315

So you've got a rank image below it and I just want to remove the ranking text above it, how do I do that in phpBB3?
 
Re: How do I remove the rank name above the rank pic in phpB

Susan said:
So you've got a rank image below it and I just want to remove the ranking text above it, how do I do that in phpBB3?
open: styles/(style name)/template/viewtpoic_body.html

Find:

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 -->

Replace with:
Code:
<!-- IF postrow.RANK_IMG --><dd>{postrow.RANK_IMG}</dd><!-- ENDIF -->
 
Back
Top Bottom