Category Pagination Links Not Working

Posted in: Newspaper
Post count: 3

All of the pagination links for all categories are showing the same 10 posts:
http://www.visionlaunch.com/category/crowdfunding/

For example, if you click on to the next page in this category:
http://www.visionlaunch.com/category/crowdfunding/page/2/

Then page 2 is still showing the ten posts that were on page 1.

Please tell me how to fix this problem.

Post count: 23312

Hello Visionlaunch,

I have checked your website and saw that you are using Newspaper 6.1 version. The pagination issue was fixed in the latest update 6.6.4. This kind of problem was caused by the ultimate version of WordPress 4.4.1. Please try to update to the latest version and also, before this, please do a full update.

There is also a quick fix for this, but also this is provided for version 6 of the theme. You could adjust this code and add it to your functions.php file – https://forum.tagdiv.com/topic/wordpress-4-4-1-pagination-new-fix/ Try this code, it might work:

add_filter('redirect_canonical', 'td_tmp_fix_wp_441_pagination', 10, 2);
function td_tmp_fix_wp_441_pagination($redirect_url, $requested_url) {
global $wp_query;

if (is_page() && !is_feed() && isset($wp_query->queried_object) && get_page_template_slug($wp_query->queried_object->ID) == 'page-homepage-loop.php') {
return false;
}

return $redirect_url;
}

Please consider to update the theme in near future as you may have other issues with the theme if you update the plugins that you use, WordPress..and we always use the latest version of the theme to help our clients and we provide fixes for problems occurred, like in this case WordPress latest version.

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.