XF 2.3 Pagination Alongside Thread Titles On Mobile

RoyalRumble

Well-known member
Licensed customer
Hello,

I'm hopeful someone can kindly assist.

I've just upgraded to 2.3, and in doing so have lost thread page numbers showing alongside threads in mobile view.

I can't recall how I achieved it prior 2.3, but does anyone know how I can include Mobile w/pagination as there is on desktop? So they show like the below;

I'm not really sure why its hidden there, it doesn't make any difference to the mobile view.

Desktop

desktop.webp



Mobile

mobile.webp



Mobile w/ pagination displaying

mobile-w-pag.webp

Thanks
 
In extra.less template

Code:
// top page navigation back in mobiles

.block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow)
{
   display: initial;
}
 
In extra.less template

Code:
// top page navigation back in mobiles

.block-outer:not(.block-outer--after) .pageNavWrapper:not(.pageNavWrapper--forceShow)
{
   display: initial;
}

Thanks.

I've already used this for pagination at the top - but do you know how to get the pagination alongside thread titles by any chance? So like this;

mobile-w-pag.webp


[Edit]


Solved it with the below. Not 100% it's the best way but seems to have done the trick;

Code:
/* Thread Pagination on mobile */

@media (max-width: @xf-responsiveMedium)
{
.structItem-pageJump
{
display: initial;
}
}
 
Last edited:
Back
Top Bottom