i'm just over for a while preparing next coming soon release, that will resolve also this.
I'm looking to the way, but it result to me finally, all very simple about this:
open page-forum.php (or whatever you named it)
search for:
Code: Select all
if (w3all_pass_login_out == true) {
window.location.replace('".$w3allhomeurl."/index.php/".$wp_w3all_forum_folder_wp."/');
}
immediately after add this:
Code: Select all
var w3all_kk = (w3all_passed_url.indexOf('viewtopic.php') > -1);
if (w3all_kk == false) {
window.scrollTo(0, 200);
}
The page forum will be updated with the above code, and will remove all others calls to:
Adding the above code without removing others calls to
window.scrollTo, should return same result, so just add this in the while-
i'm just over for a while preparing next coming soon release, that will resolve also this.
I'm looking to the way, but it result to me finally, all very simple about this:
open page-forum.php (or whatever you named it)
search for:
[code] if (w3all_pass_login_out == true) {
window.location.replace('".$w3allhomeurl."/index.php/".$wp_w3all_forum_folder_wp."/');
}[/code]
immediately after add this:
[code]
var w3all_kk = (w3all_passed_url.indexOf('viewtopic.php') > -1);
if (w3all_kk == false) {
window.scrollTo(0, 200);
}[/code]
[b]The page forum will be updated with the above code[/b], and will remove all others calls to:
[code]window.scrollTo(0, 200);[/code]
Adding the above code without removing others calls to [i]window.scrollTo[/i], should return same result, so just add this in the while-