Does not change pages…

Posted in: Newspaper
Post count: 9

Hello,

My url is http://www.dogforum.gr/ and the problem is that when you click “Next” or choose a number of page at the bottom of my front page, it does not do anything… Stays on the first page.

Thanks in advance!

Post count: 7909

Hi,

I have checked you site and you use a very old version of the theme, I suggest to update the the latest version 6.6.4 and also update the plugins that come with the theme from /plugins folder – https://forum.tagdiv.com/whats-included/ This issue was fixed in the latest theme version 6.6.4 – http://screencast.com/t/lIM4vyup9xE5
If you want to update the theme I suggest to consider it like a new theme as you have version 3, you cannot use the script to import the theme settings rename the shortcodes like it is specified in the docs for updated from version 4 – https://forum.tagdiv.com/how-to-update-the-theme-2/ so you should threat it like a new theme, recreate your homepage and go through the theme settings to reconfigure it.
If you don’t want to update and you want to use the current version, you should consider to not do any updates even to wordpress and also to the plugins that you use as they could cause issues.

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.