Pagination problem

Posted in: Newsmag
Post count: 280

Hello
after wordpress 4.2 i faced issue with Pagination and i fix it via some code you give me, but after wordpress 4.4 out same issue back with Pagination,,

when you move to page 2 or 3 etc. its give you same articles..

any advice ?

http://www.autosport.me

Post count: 6535

Hi

The latest theme version available on themeforest, V 2.3.5 it’s tested and works fine with the current version of WordPress. Try to update the theme following our guide: https://forum.tagdiv.com/newsmag-how-to-update-the-theme/ then test the site again.

Thanks!

Post count: 280

Hi andy,

I can not upgrade the theme to latest version, becouse i have to re install a lot of manual modifications.

Post count: 6535

Hi

You can try this code in td_wp_booster_functions.php file http://screencast.com/t/eJIvSDtqku

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

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

	return $redirect_url;
}

However I am not sure that this will work with V 1.5 of the theme, and in that case the only way to fix the pagination issue it’s by updating the theme.

Thanks!

  • This reply was modified 10 years by Andrei L..
Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newsmag’ is closed to new topics and replies.