Redirect Unregistered Users to Register page in X seconds more members proven!

MobileHacks

New Member
Redirect Unregistered Users to Register page in X seconds

What does this template mod do?
Basically, this will increase registration rates by letting your guests view the forum posts, threads, etc for X amount of seconds until they get redirected to the registration page. I use this on my forum is works great! It has increased the registrations by a long shot. The key to this is that most users who join vBulletin forums cannot find the register link sometimes and often are confused. With this, they immediately get sent there and register!

How do I install this modification?

Installing is the simple part. Here we go:

simple steps into installing!

Go to admin cp>style manager>all style options>place in your header Code:
PHP:
<if condition="$bbuserinfo['usergroupid'] == 1">
<meta HTTP-EQUIV="REFRESH" content="X; url=http://www.yourforumurl.com/register.php">
</if>
Replace X with how many seconds you want the unregistered to view your board.
Replace "yourforum" with your site name.
Press save and all done!
 

waleedkhalid

New Member
hey man u have to replace the X with Sec like 1 sec 2 sec how much time u wan to give the guest to view the page if u set 10 sec when the guest been on the forums for 10 sec they will automatically redirect to the register page
 

kazimhussain

New Member
MobileHacks said:
Redirect Unregistered Users to Register page in X seconds

What does this template mod do?
Basically, this will increase registration rates by letting your guests view the forum posts, threads, etc for X amount of seconds until they get redirected to the registration page. I use this on my forum is works great! It has increased the registrations by a long shot. The key to this is that most users who join vBulletin forums cannot find the register link sometimes and often are confused. With this, they immediately get sent there and register!

How do I install this modification?

Installing is the simple part. Here we go:

simple steps into installing!

Go to admin cp>style manager>all style options>place in your header Code:
PHP:
<if condition="$show['guest']">
<meta HTTP-EQUIV="REFRESH" content="X; url=http://www.yourforum.com/register.php">
</if>>

Replace X with how many seconds you want the unregistered to view your board.
Replace "yourforum" with your site name.
Press save and all done!

It did nothing just refresh same page
 

kazimhussain

New Member
Hey man... can it be work like if a user from " x " user group can't click any <a href on the index?? and instead of it we can have a html[own c0ded] on index for them ??
 

tryer

New Member
Kindly make us a code

"showing (guests) the forums, then X seconds, they will be redirected to login page?
 

MobileHacks

New Member
PHP:
<if condition="$show['guest']">
<meta HTTP-EQUIV="REFRESH" content="X; url=http://www.yourforum.com/register.php">
</if>>

tryer said:
Kindly make us a code

"showing (guests) the forums, then X seconds, they will be redirected to login page?
 

TheProphet

New Member
Add a statement to allow only this script running on the vBA index and forum home, cause it's anoying to have it on all pages.


vBAdvanced & vBulletin:
PHP:
<if condition="THIS_SCRIPT=='adv_index' OR THIS_SCRIPT=='index'">
<if condition="$bbuserinfo['usergroupid'] == 1">
<meta HTTP-EQUIV="REFRESH" content="X; url=http://www.youraddress.com/forum/register.php">
</if></if>

vBulletin only:
PHP:
<if condition="THIS_SCRIPT=='index'">
<if condition="$bbuserinfo['usergroupid'] == 1">
<meta HTTP-EQUIV="REFRESH" content="X; url=http://www.youraddress.com/forum/register.php">
</if></if>
 

j0nty07

New Member
Nice hack, and quite amusing. I initially allowed 10 seconds for guests to comply, however, it would appear that 10 seconds is not enough time for the registered users to log into the forum.
 
Top