Logout redirection link

d455

New Member
Hi. I'm using vb 3.8.1 with cmps, the problem is when loging out the page din't link back to main vb page, help please.
 
using a simple redirect

Step 1

Search languages and phrases
HTML:
$ Vbphrase [cookieclear]
Step 2
FOLLOWING the end added to the script
Code:
<script LANGUAGE="JavaScript">

var page = "index.php"
function redirect ()
(
location.href = page
)
setTimeout ( "redirect ()", 100);

</ script>
 
Back
Top