Forumhome

How can I change template so that guests can not see anything until logged in. Now one can see the number of threads, posts, registered users and the newest person but I don't want that. /showgroups is also visible. Who can help?
 
AdminCP --> Styles & Templates --> Style Manager --> Edit Templates --> Forum Home Templates --> FORUMHOME.

FIND:
Code:
<!-- what's going on box -->

ADD BEFORE:
Code:
<if condition="$show['member']">

FIND:
Code:
<!-- end what's going on box -->

ADD AFTER:
Code:
</if>


Cheers.
 
AdminCP --> Styles & Templates --> Style Manager --> Edit Templates --> Show Groups Templates --> SHOWGROUPS.

FIND:
Code:
<if condition="$moderatorbits">

ADD BEFORE:
Code:
<if condition="$show['member']">


FIND:
Code:
$usergroups

ADD AFTER:
Code:
</if>



Sorry for the late reply. I had dinner, then I spent an hour or so trying to get a no permission message to show up.
 
Back
Top