hey guys, i wanted to hide the welcome block for registered users and have the mchat there instead.
what should i do?
I have the mchat code, the one posted in the portal topic, but what about hiding the block for registered users?
simple portal welcome help
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!
Re: simple portal welcome help
what about using this for registered
for unregistered!
Code: Select all
<!-- IF S_USER_LOGGED_IN -->your content here<!-- ENDIF -->
Code: Select all
<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->your content here<!-- ENDIF -->
Re: simple portal welcome help
awesome cisco this is what i wanted!!!
Re: simple portal welcome help
Is this to remove the welcome box once member has logged in?
If so where do you put the edits?
If so where do you put the edits?
- Steve
- BBCoder VI
- Posts: 848
- Joined: 05 Mar 2010, 01:10
- BBCodes: 2000
- Favourite BBCode: p**n tube
- Favourite MOD: Non of Stokers
Re: simple portal welcome help
open styles/prosilver/template/simpleportal_body.html
find:
add before:
find:
add after:
refersh template
find:
Code: Select all
<!-- Start Welcome -->
<div class="forabg">
Code: Select all
<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
Code: Select all
</div>
<!-- End Welcome -->
Code: Select all
<!-- ENDIF -->