-
AuthorPosts
-
February 7, 2019 at 7:33 pm #1064263
Hallo
Gemäss Google Search Console sind 17 meiner gesendeten Seiten mit “noindex” gekennzeichnet. Ich habe schon alles versucht und den Quelltext mit Seiten verglichen welche indexiert wurden, leider habe ich den Fehler nicht gefunden.
Es hat auch keine Logik, denn einige Seiten wurden idexiert und andere nicht, obwohl im Quellcode der gleiche Code ersichtlich ist.
Haben Sie mir einen Tipp wo das “noindex” versteckt ist oder wissen Sie wo der Fehler ist?Vielen Dank für eure Unterstützung.
IvanFebruary 12, 2019 at 4:25 am #1065767Hey Ivan,
Thank you for using Enfold.
Those pages are indexable according to the markup.
<meta name="robots" content="index, follow" />
Have you tried setting or marking the entries as solve in your console? If ever they come back in the list then there is a problem.
Best regards,
IsmaelApril 5, 2019 at 11:36 am #1087437Wir haben das Problem auch und möchten es sehr gerne abstellen.
Bei uns handelt es sich um die Kategorie-Seiten: “Categories” of Portfolio
Was müssen wir tuen um den Meta Eintrag der “Categories” :<meta name=”robots” content=”noindex, follow” />
zu ändern in:
<meta name=”robots” content=”index, follow” />
danke.==
We also have the same problem and would like to turn it off.
The problem exists in: “Categories” of Portfolio
What do we have to do about the meta entry of the “Categories”:<meta name=”robots” content=”noindex, follow” />
to change in:
<meta name=”robots” content=”index, follow” />
thanksApril 8, 2019 at 3:48 am #1088109Hi,
Are you using any SEO plugin? This filter should define the meta robot tags for the category pages.
if(!function_exists('avia_archive_set_follow')) { function avia_archive_set_follow($meta) { if( is_product_category() || is_shop() || is_archive() ) { $meta = '<meta name="robots" content="index, follow" />' . "\n"; } return $meta; } add_filter('avf_set_follow','avia_archive_set_follow', 10, 1); }
Just add it in the functions.php file.
Best regards,
IsmaelApril 11, 2019 at 9:17 am #1089466Hallo
Es wird kein SEO Plugin verwendet. Wir haben alle Plugins testweise deaktiviert. Das Problem besteht weiterhin.
Implementierung des angegebenen Codes funktioniert nicht (nur weisse Seite angezeigt)
mfg=====
There is no SEO plugin used.
In addition, we have disabled all plugins on a test basis. The problem is still there.
Implementation of the specified code do not work (only white page displayed)
greetinxApril 12, 2019 at 1:30 am #1089805Hi,
Thanks for the update.
Implementation of the specified code do not work (only white page displayed)
Did you copy the code from your email? Please copy it directly from the forum. Or edit the following line if you’re not using WooCommerce:
if( is_product_category() || is_shop() || is_archive() ) {
Replace it with:
if( is_archive() ) {
Best regards,
IsmaelApril 12, 2019 at 5:52 am #1089862thank you.
Der nachfolgende code löst das noindex Problem:
The following code solves the noindex problem:functions.php
if(!function_exists('avia_archive_set_follow')) { function avia_archive_set_follow($meta) { if( is_archive() ) { $meta = '<meta name="robots" content="index, follow" />' . "\n"; } return $meta; } add_filter('avf_set_follow','avia_archive_set_follow', 10, 1); }
- This reply was modified 5 years, 7 months ago by solf.
April 13, 2019 at 4:22 am #1090245Hi,
Great, I’m glad you found a solution and thanks for sharing. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardOctober 1, 2019 at 7:09 pm #1143892Hi,
I have the same problem.
17 out of many more english pages are marked as “noindex” in Google Search Console
and just 1 of the german pages.When I manually check the URLs in Google Search Console I get the report: Noindes” in Meta-Tag “robots” identified.
I’m using WPML – some of the noindex pages are duplicates of german pages, but there are also noindex pages which are no duplicates.
I guess as the noindex is in Meta-Tags “robots” I can not use the code above and paste it in function.php – instead I have to change the robots.txt. But which code would that be?
Best regards
BettinaOctober 4, 2019 at 3:16 am #1144808 -
AuthorPosts
- You must be logged in to reply to this topic.