Display Users Age in Viewtopic

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Display Users Age in Viewtopic

Post by Stoker »

Display Users Age in Viewtopic
Written by EY

With a single edit you can display users age in viewtopic.

Open: styles/prosilver/template/viewtopic_body.html
Find:

Code: Select all

<!-- IF postrow.POSTER_POSTS != '' --><dd><strong>{L_POSTS}:</strong> {postrow.POSTER_POSTS}</dd><!-- ENDIF -->
Add before:

Code: Select all

<!-- IF postrow.POSTER_AGE --><dd><strong>{L_AGE}:</strong> {postrow.POSTER_AGE}</dd><!-- ENDIF -->
Open: styles/subsilver2/template/viewtopic_body.html
Find:

Code: Select all

<!-- IF postrow.POSTER_POSTS != '' --><br /><b>{L_POSTS}:</b> {postrow.POSTER_POSTS}<!-- ENDIF -->
Add before:

Code: Select all

<!-- IF postrow.POSTER_AGE --><br /><b>{L_AGE}:</b> {postrow.POSTER_AGE}<!-- ENDIF -->