PDA

View Full Version : How to show Username in Show printable thread page?


chikkoo
11-30-2010, 12:08 PM
Hello,

I noticed that the ThreadTools-->Show Printable Version, shows a page without the username which appears in the welcome box.

How can I add a username in this page, so that I will know who is printing the thread.

BirdOPrey5
12-02-2010, 01:17 PM
Edit your printthread template...

Find the code:


<br />

<div>
<a href="$vboptions[bburl]/$vboptions[forumhome].php" accesskey="1"><strong>$vboptions[bbtitle]</strong></a>
(<span class="smallfont"><em>$vboptions[bburl]/$vboptions[forumhome].php</em></span>)
</div>

Above that add:
<br />
Printed By: $bbuserinfo[username]

You can move the code around to suit your needs, that seemed like the best place for me.

chikkoo
12-03-2010, 06:26 PM
Thanks a lot Joe/BirdOPrey5.