PDA

View Full Version : how to display forum home page always after user log in


spatel
05-21-2008, 03:47 AM
Hi,

I have made some changing to our system such that it automatically logs user in when they click on forum button.
v are having two different database for our website users and forums user integrated.

the problem is, whenever user clicks on forum burron, it logs in the user to the forum but forum transfer it back to the same page.
I want to make changes such that, after every successful log in, user must be transfered to the forum home page.

any idea??????

Thanks

--------------- Added 1211350891 at 1211350891 ---------------

already 2 hours and 6 visitors, but no answer??????

please help me

Medina
05-21-2008, 07:54 AM
control panel ---> your style ---> edit template ---> standard redirect ---> and after that find this


<p class="smallfont"> <a href="$url">$vbphrase[click_if_browser_does_not_redirect]</a></p>


Replace with:

<p class="smallfont"> <a href="http://ENTER YOUR URL TO YOUR FORUM HOME">$vbphrase[click_if_browser_does_not_redirect]</a></p>

spatel
05-26-2008, 12:48 AM
got your point, thanks for that.
but why it is not opening in new window after I changed it's target to _blank??
any idea???

thanks

Medina
05-26-2008, 02:02 PM
<p class="smallfont"> <a href="http://ENTER YOUR URL TO YOUR FORUM HOME" target="_blank">$vbphrase[click_if_browser_does_not_redirect]</a></p>


Did you have try this?


if it`s not working, then it`s not working because it`s a redirect. But what you can do, is add a image above the "redirect" and give that image the "target="_blank"" code.

SEOvB
05-26-2008, 03:24 PM
Use the plugin system for login_redirect location

MoT3rror
05-26-2008, 06:09 PM
<p class="smallfont"> <a href="http://ENTER YOUR URL TO YOUR FORUM HOME" target="_blank">$vbphrase[click_if_browser_does_not_redirect]</a></p>


Did you have try this?


if it`s not working, then it`s not working because it`s a redirect. But what you can do, is add a image above the "redirect" and give that image the "target="_blank"" code.

Just so you know, that only changes the link, it doesn't change what it redirects to.