Quote:
Originally Posted by Freesteyelz
The total thread count shows up in postbit and profile in 3.7 Beta 3. The only thing I haven't figured out yet is the percentage of threads per day. To get total threads in profile do the following:
In template memberinfo_block_statistics find:
Code:
<legend>$vbphrase[total_posts]</legend>
And replace it with:
Code:
<legend>$vbphrase[total_posts] & $vbphrase[threads]</legend>
Then find:
Code:
<if condition="$prepared['lastposturl']">
<li>
<span class="shade">$vbphrase[last_post]:</span> <a href="$prepared[lastposturl]">$prepared[lastposttitle]</a> $prepared[lastpostdate] <span class="time">$prepared[lastposttime]</span>
</li>
</if>
Add after:
Code:
<li><span class="shade">$vbphrase[total_threads]: <strong>$userinfo[threads]</strong></li>
Total thread count should now be in Profile.
|
You missed </span>
Code:
<li><span class="shade">$vbphrase[total_threads]: </span><strong>$userinfo[threads]</strong></li>
Thanks for that though!
*clicks install*