Question on pagination headers – ever 'fixed' ?

Posted in: Newsmag
Post count: 9544

Hi, folks
finally going to upgrade some of my sites running Newsmag 3.1 to latest.
Way back when, there was a somewhat across the board minor ‘bug’ if you will with paginated headers.
(h1 title category pagination)

Meaning, if you have a category like ‘Florida Government News’ …
siteeeeee.com/NEWS/florida-government-news/
you might have headers on the main page
FLORIDA GOVERNMENT NEWS

however, when you go to subsequent pages (let’s say 60 items per page);
/florida-government-news/page/3/
the h1 header is still
FLORIDA GOVERNMENT NEWS

when ideally it should be something like
FLORIDA GOVERNMENT NEWS : page 3

since 20 indexes with identical H1 headers is kind of funky.

While one element can be changed via editing a template; some of that is buried so deep, it’s almost impossible to get to.

Any chance this got sorted yet at some point, or could it?

Thanks!

Post count: 9544

I know I posted some example code long ago, where it would do to have a “if not page 1, add the pagination” hook … but this really should be implemented in all TD themery 🙂

Post count: 22421

Hello Chris,

Indeed this seems to be the case. There was no implementation done in this regard as we did not get any more request by our users regarding this implementation.
The title will remain the same across all ‘sub-pages’. I will add this request to our “to do list” and pass on this information to the development team and we will see how we can implement a solution for this problem.

Thank you!

Post count: 9544

Thanks!
I guess this would also apply to the ‘tag’ template, and the author template as well.

Happy new year!

Post count: 9544

Here’s example of what I did for one of our custom corporate pages (not using Newsmag, but using Bootstrap 3 + WP):

<h1>Our Daily News Desk<?php if ( $paged < 2 ) { } else { echo (' - Page '); echo ($paged);}?></h1>

<h4><?php if ( $paged < 2 ) { } else { echo (' Page '); echo ($paged);}?> Main index for (TOPIC NAME) news from (SITENAME).</h4>

<?php if($paged < 2): ?><h3> (description of topic/category here) </h3><?php endif; ?>

Post count: 23312

Hi,

Thanks for your suggestion! That was added to our list of improvement! Our developers will check this and if they consider to implement it in our theme, we will make this update to our future updates.

Thanks.

Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.