I'm sure it must be just some configuration glitch, I'm on many vbulletin forums and haven't seen this issue before.
I'm sure it must be just some configuration glitch, I'm on many vbulletin forums and haven't seen this issue before.
I think part of the problem might have to do with the fact that it only does it for posts in the last 24 hrs. I was gone this weekend and came back sunday to check posts and had to manually do it for a lot of them
Me too. So theres gotta be some kind of setting to go to a thread and it automatically goes to the last unread post. Or at least don't have it be the unread posts for the last 24 hrs.
Urban Toronto used to do the same thing, and they fixed it. Maybe someone should ask how they did it.
I've tried to look for a solution and so far have come up empty handed. Question: the other vbulletin forums you're on, are they running 4.0? I wonder if this is just a bug in this version.
Regardless what I think we'll do at the next WW Meet (May 29th) is put "Forum Settings" on the agenda for 15-30 minutes. That will give us some time to scroll through all the options and see if we can fix this issue.
Maybe this is fixed? Now when I go to what's new? and click on the little arrow to go to the thread it takes me to the first unread post, rather than having to click the go to newest post link at the top of the page
Yes, I did some more searching last night and found the code to fix this issue.
Awesome, you've increased my productivity by 100%!
Was it an easy fix?
Yes super easy, just had to find the solution. It was simply adding a few lines of code.
Around line 2640 of class_core.php, add the following code:
// save
if (!$path)
{
$this->registry->relpath = $relpath;
}
//ADD THIS CODE
if ($fragment = parse_url($path, PHP_URL_FRAGMENT))
{
$relpath .= '#' . $fragment;
}
//END NEW CODE
return $relpath;
Could the "Latest Posts" section on the front page be changed to go to the latest post as well? It goes to the top of the latest page instead.
Bookmarks