simple portal welcome help

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
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.
If not your topic may be ignored or locked!

simple portal welcome help

Post by neuropass »

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?

Re: simple portal welcome help

Post by cisco007 »

what about using this for registered

Code: Select all

<!-- IF S_USER_LOGGED_IN -->your content here<!-- ENDIF -->
for unregistered!

Code: Select all

<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->your content here<!-- ENDIF -->

Re: simple portal welcome help

Post by neuropass »

awesome cisco this is what i wanted!!!

Re: simple portal welcome help

Post by trekky »

Is this to remove the welcome box once member has logged in?

If so where do you put the edits?

Re: simple portal welcome help

Post by Steve »

open styles/prosilver/template/simpleportal_body.html
find:

Code: Select all

	<!-- Start Welcome -->
	<div class="forabg">
add before:

Code: Select all

<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
find:

Code: Select all

	</div>
	<!-- End Welcome -->
add after:

Code: Select all

<!-- ENDIF -->
refersh template