do this:
forum/global.php
1. find the code:
PHP Code:
$templatesused.=',pagenav,pagenav_curpage,pagenav_firstlink,pagenav_lastlink,pagenav_nextlink,pagenav_pagelink,pagenav_prevlink';
replace it with:
PHP Code:
$templatesused.=',pagenav,pagenav_curpage,pagenav_firstlink,pagenav_lastlink,pagenav_nextlink,pagenav_pagelink,pagenav_prevlink,forumhome_logoutcode,forumhome_logincode';
2. find the code:
PHP Code:
$header='';
$footer='';
above that, add:
PHP Code:
$logincode='';
if ($bbuserinfo['userid']!=0) {
eval("\$logincode = \"".gettemplate('forumhome_logoutcode')."\";");
} else {
eval("\$logincode = \"".gettemplate('forumhome_logincode')."\";");
}
forum/member.php
1. find the code:
PHP Code:
$url = str_replace("\"", "", $url);
eval("standardredirect(\"".gettemplate("redirect_login")."\",\"\$url\");");
replace it with:
PHP Code:
$url = $HTTP_REFERER;
eval("standardredirect(\"".gettemplate("redirect_login")."\",\"\$url\");");
you are done with the code changes. now place [high]$logincode[/high] in your footer. when the user will login, it will be redirected to the exact same location.
that should do it.
PS. there is no need to say: "pleaseeeeeee helppppppp". people will help you here. just post your thread and be patient. some freaky guy(girl) will answer to you.
regards,
nakkid.