XF 1.5 Go to first unread

Yes.

It's controlled by the page_nav.css template:
Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveMediumWidth)
{
    .Responsive .PageNav .pageNavHeader
    {
        display: none;
    }
}

@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive .PageNav .unreadLink
    {
        display: none;
    }
}
</xen:if>
 
Thanks. If I want it to show up on mobile devices, do I simply delete that template?

Yes.

It's controlled by the page_nav.css template:
Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveMediumWidth)
{
    .Responsive .PageNav .pageNavHeader
    {
        display: none;
    }
}

@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive .PageNav .unreadLink
    {
        display: none;
    }
}
</xen:if>
 
Delete the code within the template, not the template itself.

You may require further CSS tweaks to get everything to display correctly.
 
Delete the code within the template, not the template itself.

You may require further CSS tweaks to get everything to display correctly.

That worked. Thank you.

I'm curious though - I thought the script used cookies to send a user to the first unread message. Why the need for the button?
 
How do I now go to the first unread post in a thread on XF2? Because when I click on the button in the subscription emails it just takes me to the first page of the thread?
 
Top Bottom