XF 2.3 Way to add page numbers/back-forward at top of posts?

Can't thank you enough. I apparently need to learn how to search better.

One thing though, anyone wandering by have any idea how to remove that same thing from the topics list now? The general user is not looking to go pages back on the topics list every time they are browsing so it's taking up a lot of space. If they want to do that, they can just scroll to the bottom.

But it looks great on the posts!
 

Attachments

  • IMG_4966.webp
    IMG_4966.webp
    16.6 KB · Views: 3
If I understand well what you want, you can target the template:
Less:
[data-template="thread_view"] {
    @media (max-width: 480px) {
        .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow) {
            display:block;
        }
    }
}
 
If I understand well what you want, you can target the template:
Less:
[data-template="thread_view"] {
    @media (max-width: 480px) {
        .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow) {
            display:block;
        }
    }
}
the bachelor abc GIF


No but, you understood me perfectly and it looks great. I wish you could split the solution with this solution system by the way.

Thanks so much!
 
If I understand well what you want, you can target the template:
Less:
[data-template="thread_view"] {
    @media (max-width: 480px) {
        .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow) {
            display:block;
        }
    }
}
That will only work for discussion threads, not for other types (question, article, etc.).

More generalized approach
Less:
[data-template^="thread_view"]
{
    @media (max-width: 480px)
    {
        .block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow)
        {
            display:block;
        }
    }
}
 
Back
Top Bottom