Add message and author in viewtopic

Guides & Snippets for phpBB3. Try the Snippets here and share Your own Snippets
There is no support here! Only Read Access!
Locked
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 822
Joined: 05 Mar 2010, 01:10
BBCodes: 2000
Favourite BBCode: p**n tube
Favourite MOD: Non of Stokers

Add message and author in viewtopic

Post by Steve »

Simpley places the words in viewtopic per posts message,author.

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

Code: Select all

			<!-- IF postrow.S_IGNORE_POST -->
				<div class="ignore">{postrow.L_IGNORE_POST}</div>
			<!-- ELSE -->
add after:

Code: Select all

<div style="text-align: center;font-size: 12px;">{L_MESSAGE}</div>
find:

Code: Select all

			<!-- IF postrow.SIGNATURE --><div id="sig{postrow.POST_ID}" class="signature">{postrow.SIGNATURE}</div><!-- ENDIF -->
		<!-- ENDIF -->

		</div>
add after:

Code: Select all

<div style="text-align: center;font-size: 12px;">{L_AUTHOR}</div>
Refresh template for prosilver ;)
message.png
NAPWR wrote: Nice, Stoker is Hot
download/file.php?id=2327&mode=view
Locked