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!
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!
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; ?>
