How to Takee...

Extreme111

New Member
Hello i have a forum 3.7.0 but i wanna know how to take Active Members of the front main index for example:

Threads: 47, Posts: 151
Members: 32,
Welcome to our newest member, Joel

So its like at the same as example above .


NOT LIKE THIS
:::::::::::::::::::::

Threads: 47, Posts: 151
Members: 32, Active Members: 29
Welcome to our newest member, Joel

Please tell me how if it can be done..



Thanks,
 
search this line and change UNDER:
Code:
<td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" />
</td>td class="alt1" width="100%">
		<div class="smallfont">
			<div>

this line ABOVE:
Code:
<span title="<phrase 1="$vboptions[activememberdays]">$vbphrase[within_the_last_x_days]</phrase>">$vbphrase[active_members]: $activemembers</span>
				</if>


Its in your forumhome template, so everything between these lines can be changed i did it like this:
Code:
				$vbphrase[threads]: $totalthreads
<br>
				$vbphrase[posts]: $totalposts
<br>
				$vbphrase[members]: $numbermembers<if condition="$show['activemembers']">
<br>

if you can't do it send me your forumhome template, i will change it for you.

grtz
 
SpeedRazors said:
search this line and change UNDER:
Code:
<td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" />
</td>td class="alt1" width="100%">
		<div class="smallfont">
			<div>

this line ABOVE:
Code:
<span title="<phrase 1="$vboptions[activememberdays]">$vbphrase[within_the_last_x_days]</phrase>">$vbphrase[active_members]: $activemembers</span>
				</if>


Its in your forumhome template, so everything between these lines can be changed i did it like this:
Code:
				$vbphrase[threads]: $totalthreads
<br>
				$vbphrase[posts]: $totalposts
<br>
				$vbphrase[members]: $numbermembers<if condition="$show['activemembers']">
<br>

if you can't do it send me your forumhome template, i will change it for you.

grtz

lol confused where do i search the code ... im new to all this i dont really know much about forums :P

EDIT

Okay i done it now thanks for telling me
 
Back
Top