The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
3 posters

    Redirect to the lastest post?

    avatar
    Yuushishio
    Forumember


    Posts : 117
    Reputation : 4
    Language : English

    Solved Redirect to the lastest post?

    Post by Yuushishio February 29th 2016, 1:12 pm

    My forum: http://1000sunny.forumvi.com/
    ver: Phpbb3
    -----------------------

    Is there any script to help me solve a problem of the link of a topic will lead to its latest post/page but not the #1post/page
    I don't want to just use the small icon lead to the latest post. But just click to the link of topic title and redirect right to the latest.


    Last edited by Yuushishio on March 4th 2016, 8:52 am; edited 1 time in total
    avatar
    Yuushishio
    Forumember


    Posts : 117
    Reputation : 4
    Language : English

    Solved Re: Redirect to the lastest post?

    Post by Yuushishio March 3rd 2016, 2:21 am

    bumb
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Redirect to the lastest post?

    Post by Ange Tuteur March 3rd 2016, 9:53 am

    It depends on which area of the topic links you want to modify. Generally speaking you can add the following query to the end of a topic URL to go directly to the most recent post.
    Code:
    ?view=newest

    and a quick example of modifying the topic links.
    Code:
    $(function() {
      for (var a = $('a[href^="/t"]'), i = 0, j = a.length; i < j; i++) a[i].href += (/\?/.test(a[i].href) ? '&' : '?' ) + 'view=newest';
    });
    The above script should go in Modules > JS codes management, with a placement of your choosing.
    avatar
    Yuushishio
    Forumember


    Posts : 117
    Reputation : 4
    Language : English

    Solved Re: Redirect to the lastest post?

    Post by Yuushishio March 4th 2016, 2:05 am

    @Ange Tuteur it worked but it caused another big problem.
    Now when I click to a topic, it link to the latest (newest post) but the pagination becomes not working. I can't click the number to go back to the previous page. When I click it still lead me to the latest Shocked
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Redirect to the lastest post?

    Post by Ange Tuteur March 4th 2016, 8:15 am

    That's because the script needs to be isolated to a specific area. Allow me to reiterate :
    It depends on which area of the topic links you want to modify.
    That is ; where do you want this script to work, specifically. ( e.g. topiclist, last post, etc.. )
    avatar
    Yuushishio
    Forumember


    Posts : 117
    Reputation : 4
    Language : English

    Solved Re: Redirect to the lastest post?

    Post by Yuushishio March 4th 2016, 8:34 am

    I want it to apply in home page and in every forum.
    Just click to a title of a topic link, and it lead to the latest post of that topic.
    Actually your last code worked well but as I say, it also made the pagination bar lost control.
    So please help me fix it.

    Ahh sorry ! I get it now. I just have to choose where to apply it in the Java script module.
    Thank you very much.
    Problem solved.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51554
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: Redirect to the lastest post?

    Post by SLGray March 4th 2016, 2:51 pm

    Topic solved and archived



    Redirect to the lastest post? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.

      Current date/time is November 11th 2024, 1:25 pm