+ Reply to Thread
Results 1 to 20 of 28

Hybrid View

  1. #1

    I'm sure it must be just some configuration glitch, I'm on many vbulletin forums and haven't seen this issue before.

  2. #2
    Join Date
    Dec 2009
    Location
    Kitchener
    Posts
    3,352

    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

    Quote Originally Posted by TripleQ View Post
    I'm sure it must be just some configuration glitch, I'm on many vbulletin forums and haven't seen this issue before.
    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.

  3. #3

    Urban Toronto used to do the same thing, and they fixed it. Maybe someone should ask how they did it.

  4. #4
    Join Date
    Dec 2009
    Location
    Kitchener-Waterloo
    Posts
    2,545

    Quote Originally Posted by DHLawrence View Post
    Urban Toronto used to do the same thing, and they fixed it. Maybe someone should ask how they did it.
    Thanks for the info, I'll take a look at their forum issues section or message their moderators to find out how it was fixed.

  5. #5
    Join Date
    Dec 2009
    Location
    Kitchener-Waterloo
    Posts
    2,545

    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.

  6. #6
    Join Date
    Dec 2009
    Location
    Kitchener
    Posts
    3,352

    Quote Originally Posted by UrbanWaterloo View Post
    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.
    Yup, thats worth talking about. May be something for the mods to hammer out and not bore everyone else with.

  7. #7
    Join Date
    Dec 2009
    Location
    Kitchener
    Posts
    3,352

    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

  8. #8
    Join Date
    Mar 2010
    Location
    H2OWC
    Posts
    447

    Quote Originally Posted by Spokes View Post
    Maybe this is fixed?
    It seems to be.

    now works like it's supposed to.

    to the perpetrator

  9. #9
    Join Date
    Dec 2009
    Location
    Kitchener-Waterloo
    Posts
    2,545

    Yes, I did some more searching last night and found the code to fix this issue.

  10. #10

    Awesome, you've increased my productivity by 100%!

  11. #11
    Join Date
    Dec 2009
    Location
    Kitchener
    Posts
    3,352

    Was it an easy fix?

  12. #12
    Join Date
    Dec 2009
    Location
    Kitchener-Waterloo
    Posts
    2,545

    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;

  13. #13

    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.

+ Reply to Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts