Hi,
I have just applied the new WordPress 4.4 update and Now i face a problem Same content every category page.
Example;
https://mydreamlives.com/health
https://mydreamlives.com/health/page/2
https://mydreamlives.com/health/page/3
How to solve this problem?
You could try
a) re-save permalinks to clear permalink transient settings
b) clear any caching plugin, reset/refresh any CDN setting
c) in theme panel, resave the choice for default category template(s)
Sometimes the simplest things work — might not in your case, but this often fixes bizarro gremlins after WP update!
You could try
a) re-save permalinks to clear permalink transient settings
b) clear any caching plugin, reset/refresh any CDN setting
c) in theme panel, resave the choice for default category template(s)Sometimes the simplest things work — might not in your case, but this often fixes bizarro gremlins after WP update!
Not working, How to solve this problem?
Hi,
We also tested this and did not found any issues, so please disable all your plugins except Visual Composer, clear cache, re-save permalinks and see if you still have this issue.
If the issue persist please send an email at contact@tagdiv.com and provide wp-admin access so we can take a closer look.
Thanks!
Hello,
Sorry for the delay,
We investigated this issue further and there truly seems to be a bug with the new version of WP.
It seems the big grid element is causing issues when it is not specified on a category page.
This will be fixed in the next version of the theme. Until that time there are 2 solutions you can use
The first one is to use a big grid on your category page and that solves the issue.
The second one, if you do not want a big grid , you need to use this code:
if(empty($query->is_feed)) {
if ( $paged > 1 ) {
$query->set( 'offset', intval($offset) + ( ( $paged - 1 ) * $limit ) );
} else {
$query->set( 'offset', intval($offset) );
}
}
In this file: http://screencast.com/t/VTA7WyDf7gT
And it should fix the error.
Thank you and sorry for the inconvenience.