podaniel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pages not indexed in Google because of Noindexhere is what I found:
public function noindex_follow_rss() {
if ( is_feed() && headers_sent() === false ) {
header( ‘X-Robots-Tag: noindex, follow’, true );
}
}
That part is caused my pages to have noindex in feed pages.
I changed it to index, follow and it it update the meta header
However I don’t know how to remove it .
That is an SEO issue with all-in-one-seo-pack plugin, because they should not exclude feed pages from index.Forum: Fixing WordPress
In reply to: Pages not indexed in Google because of Noindexno problems with the links and I am not a spammer.
so in case you aware of my situation, can you suggest what is wrong?
is not a Google question, cause Google is responsible to follow the existing site structure and not to develop them.
Jan , now because you deleted important links that indicate the issue, how other members can know how to help?- This reply was modified 6 years, 6 months ago by podaniel.
Forum: Plugins
In reply to: [Yoast SEO] Replace the domain for canonical url to another domain.ok , never mind I just found answer:
add_filter(‘wpseo_canonical’, ‘swpseo_canonical_domain_replace’);
add_filter(‘wpseo_prev_rel_link’, ‘swpseo_canonical_domain_replace’);
add_filter(‘wpseo_next_rel_link’, ‘swpseo_canonical_domain_replace’);
function swpseo_canonical_domain_replace($url){$domain = ‘www.danimaster.com’; // this can be loaded from option table if you want admin to set it.
$parsed = parse_url(home_url());
$current_site_domain = $parsed[‘host’];
return str_replace($current_site_domain, $domain, $url);}
- This reply was modified 8 years, 4 months ago by podaniel.
Forum: Plugins
In reply to: [Yoast SEO] Replace the domain for canonical url to another domain.Thank for update
Can you also explain how to update :
rel=”next and rel=”prev” meta tags?Well
First of all I recommending you to to check for other issues that was previously listed.
FOR APC
1) make sure your APC is not caching the wp-admin files
you can check by installing the monitor tool and disable that in the configuration settings.
2)install WordPress plugin for Nginx Purge cache
3) manually clean the APC cache by restarting the PHP service you use.Good luck.
o.k. i solved the problem, is was related to APC configuration to cache the wp-admin pages.
I have similar issue after updated my site, tried all possible suggestion above and other like disable and enable the editor show functionality – so far no results.
my domain url: https://www.appfree.org/iphone/
Interesting things that i have a plugin: Zemanta, that shows related posts only when editor is enable. And it’s working properly if I clicking on “Visual” button.Also is started to show me en empty pages in some example
see image: https://www.appfree.org/iphone/wp-content/uploads/2014/03/empty-page.png
web server: php-fpm nginx