Need to Register! Message
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
Need to Register! Message
Hello since i hide my forum from guest when they click a topic they see following:
How can i make them see this rather:
( Thats the login page )
How can i make them see this rather:
( Thats the login page )
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Re: Need to Register! Message
You can't because registering would not allways give access to a forum.
It could be a moderator forum.
It could be a moderator forum.
Board rules! No PM support
- Steve
- BBCoder VI
- Posts: 847
- Joined: 05 Mar 2010, 01:10
- BBCodes: 2000
- Favourite BBCode: p**n tube
- Favourite MOD: Non of Stokers
Re: Need to Register! Message
Stoker true,
but if you want add this to the viewforum_body.html
in your style/template/viewforum_body.html
find:
and add before you may need to do some tweeking to your html as i dont know that style.
but if you want add this to the viewforum_body.html
Code: Select all
<!-- IF not S_ADMIN_AUTH and S_REGISTER_ENABLED -->
<td class="row1" align="center">
<p class="genmed">{L_LOGIN_INFO}</p>
<p class="genmed" align="center">
<a href="{U_TERMS_USE}">{L_TERMS_USE}</a> | <a href="{U_PRIVACY}">{L_PRIVACY}</a> | <!-- IF not S_ADMIN_AUTH and S_REGISTER_ENABLED --> <a class="gensmall" href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF --> </p>
</td>
<!-- ENDIF -->
find:
Code: Select all
<td class="row1" align="center"><span class="genmed">{L_USERNAME}:</span> <input class="post" type="text" name="username" size="10" /> <span class="genmed">{L_PASSWORD}:</span> <input class="post" type="password" name="password" size="10" /><!-- IF S_AUTOLOGIN_ENABLED --> <span class="gensmall">{L_LOG_ME_IN}</span> <input type="checkbox" class="radio" name="autologin" /><!-- ENDIF --> <input type="submit" class="btnmain" name="login" value="{L_LOGIN}" /></td>
- Marcus Vinny
- BBCoder II
- Posts: 5
- Joined: 12 Mar 2010, 22:42
- Location: Brazil
- Contact:
Re: Need to Register! Message
This kind of thing just amazes its visitors ...
But to be simple enough to put this in viewtopic.php:
Open: viewtopic.php, find:
Add after:
This always displays the login page for unregistered users.
But to be simple enough to put this in viewtopic.php:
Open: viewtopic.php, find:
Code: Select all
$user->setup('memberlist');
Code: Select all
if ($user->data['user_id'] == ANONYMOUS)
{
login_box('', $user->lang['LOGIN']);
}
phpBB4 Brasil | phpBB Portugal | Suporte phpBB
- phpBB Fan
- phpBB Fan
Re: Need to Register! Message
no no i want my guest to see what my forum looks like.. before registering.. like what are the topics and post.. and all
not like... go on site and BAM need register
not like... go on site and BAM need register
Re: Need to Register! Message
i want to know what it does before modifying