Status
Not open for further replies.
12 comments
// vBulletin 3.6.x

Try the Welcome Headers Mod.

OR

If you don't have a license, you can manually apply some code.
Go to AdminCP > Styles & Templates > (select skin) > Edit Templates > 'header'

Place this code where you want it to be:
<if condition="$post[usergroupid] == 1"><a href="register.php"><img src="file"></a></if>

Note: I've used UsergroupID1, as that's the default Unregistered usergroup.
Change "img src" with where your image is hosted.


// vBulletin 3.7.x

In the AdminCP, there should be a "Notices" tab, where you can add a notice for guests by default. :)



Hope that helped.

- UltimA
 
i insert this in header bat nothing hapen?
<if condition="$post[usergroupid] == 1"><a href="register.php"><http://img150.imageshack.us/img150/9687/registernm7.png="file"></a></if>
 
Try this:

<if condition="$post[usergroupid] == 1"><a href="register.php"><img src="http://img150.imageshack.us/img150/9687/registernm7.png"></a></if>

Copy and paste :D
 
search
PHP:
<!-- guest welcome message -->

<!-- / guest welcome message -->
replace with this code and change the details:
PHP:
<!-- guest welcome message -->
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr>
    <td class="tcat">Welcome to the Your site here.</td>
</tr>
<tr>
    <td class="alt1">
        <center><a href="http://www.your-site-here.com/forum/register.php"><img src="http://www.your-image-link-here.gif" border="0"></center>

    </td>
</tr>
</table>
<!-- / guest welcome message -->
 
so just to make shore i am doing this right i search for the first line e.g <!-- guest welcome message --> then replace the writing in side with this <table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<
tr>
<
td class="tcat">Welcome to the moviemadness.info.</td>
</
tr>
<
tr>
<
td class="alt1">
<
center><a href="http://www.moviemadness.info/forum/register.php"><img src="http://www.any pic in here .gif" border="0"></center>

</
td>
</
tr>
</
table>
is that right
 
Status
Not open for further replies.
Back
Top