Adding a Message to Guests

Twisted Fairytale

Retired Administrator
Joined
Jun 12, 2008
Messages
5,384
Reaction score
28
FP$
26,235
Do you want to display a message to your guests on your forum to invite them to Register? Well, this will help!

To add a scrolling message to your guests ONLY on your forum, use this code.

Code:
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><div class="inner"><span class="corners-top"><span></span></span>
<MARQUEE><FONT 
color="#4080FF">TYPE YOUR MESSAGE HERE!</MARQUEE></FONT>
<div class="inner"><span class="corners-bottom"><span></span></span><!-- ENDIF -->

To add it in, go to your ACP, then click Styles. Go to Templates and select the skin you are using. Clik edit and find overall_header.html from the drop down box. Click 'Select Template File'. Now scroll to the bottom of the template editor until you see the very bottom. Add in the code above right above this:

Code:
		 <!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) --> 
		<div id="message" class="rules">
			<div class="inner"><span class="corners-top"><span></span></span>
				<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
			<span class="corners-bottom"><span></span></span></div>
		</div>
		<!-- ENDIF -->

Be sure to edit in your message before saving it.


Having trouble with this? Ask me and ill try to assist.
 
it should work with anything using php programming. correct?
 
gqgk said:
it should work with anything using php programming. correct?
No. It will only work with phpBB.

Or any software that uses the same template engine as phpBB3, which I don't think any do 😉
 
JakJak said:
I've got one but it doesn't scroll 😛

you should post it anyway cos not everyone likes a scrolling message 😉
 
If you don't want a scrolling message, then the code would be...

Code:
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><div class="inner"><span class="corners-top"><span></span></span>
<FONT 
color="#4080FF">TYPE YOUR MESSAGE HERE!</FONT>
<div class="inner"><span class="corners-bottom"><span></span></span><!-- ENDIF -->
 
Meh. If it was for SMF or MyBB then it would have been really helpful to me. Thanks for the share anyways. LOL.
 
Back
Top Bottom