Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #1177381

    Receiving Errors from Google
    Received this error this morning and upon reading other similar posts moderator indicated to open ticket and identify affected pages on site.

    “Search Console has identified that your site is affected by 1 Breadcrumbs issues:

    Top Warnings

    Warnings are suggestions for improvement. Some warnings can affect your appearance on Search; some might be reclassified as errors in the future. The following warnings were found on your site:

    data-vocabulary.org schema deprecated

    We recommend that you fix these issues when possible to enable the best experience and coverage in Google Search.”

    https://biancafrankdesign.com/category/blogging/

    https://biancafrankdesign.com/category/marketing/

    From your site’s source code, I see that your theme outputs breadcrumbs using the data-vocabulary.org schema. I, also, checked your theme’s demo and confirmed that their demo includes data-vocabulary.org schema. Please contact your theme author for assistance removing the schema.

    #1177588

    Hi, more info here

    https://webmasters.googleblog.com/2020/01/data-vocabulary.html

    We need update for “framework\php\class-breadcrumb.php”, thanks!

    #1177704

    Hi Gabri,

    yes, the structure of breadcrumbs-code is not like it should be: https://developers.google.com/search/docs/data-types/breadcrumb

    <ol>
      <li>
        <a href="http://www.example.com/books">Books</a>
      </li>
      <li>
        <a href="http://www.example.com/sciencefiction">Science Fiction</a>
      </li>
      <li>
        Award Winners
      </li>
    </ol>

    Many thanks for the revision.

    #1177869

    Sorry, How do I fix this?

    #1177911

    We need to wait an updated version of breadcrumbs that uses new markups.

    #1177921

    Hi,

    Thank you for your understanding

    Best regards,
    Basilis

    #1177940

    Will that be coming soon? I’m concerned with ranking

    #1178534

    Hi,

    Yes, but it should also have no effect over your rankings as it is not a ranking factor at all.

    Best regards,
    Basilis

    #1178536

    This is exactly what the error message said:

    “Search Console has identified that your site is affected by 1 Breadcrumbs issues:

    Top Warnings

    Warnings are suggestions for improvement. Some warnings can affect your appearance on Search; some might be reclassified as errors in the future. The following warnings were found on your site:”

    #1179072

    Hi,

    Thank you for the update.

    You can use this filter to remove the schema markup in the breadcrumb.

    add_filter('avia_breadcrumbs', function($breadcrumbs) {
    	$protocol = is_ssl() ? 'https' : 'http';
    	$vocabulary = 'xmlns:v="'. $protocol . '://rdf.data-vocabulary.org/#"';	
    	$breadcrumbs = str_replace($vocabulary, '', $breadcrumbs);
    	return $breadcrumbs;
    }, 10, 1);
    

    Best regards,
    Ismael

    #1179683

    Hi Ismael,

    thanks for the code.

    Unfortunately the error check at Google after using the code was not successful. On our site you can still see the error “data-vocabulary.org schema deprecated”.

    Tobias

    #1180192

    Hi,

    @Tobias: Thank you for the update. Did you add the code in the functions.php file? It is working properly on our end — removing the specified schema in the breadcrumb markup. Please open a new thread/ticket and post the login details in the private field. We’ll check it there.

    Best regards,
    Ismael

    #1181203

    Hi Ismael,

    yes, we have inserted the code in the functions.php

    Maybe it is because the theme is not up to date. We are currently still using Enfold 3.2. I think we need to do an update first, am I right?

    #1181504

    Hi Tobias,

    Yes, you are running a very old version of the theme, you do need to update it.

    Best regards,
    Victoria

    #1182069

    Hey!

    Thanks for reporting this.

    Will be replaced by correct schema.org markup in next release.

    Best regards,
    Günter

    #1182106

    Hey Günter,

    is there already a schedule when the next release will come?

    Thanks for your answer.

    Tobias

    #1182476

    Hi Tobias,

    We don’t have a set date yet unfortunately, but if you start a new thread then we can share the beta version with you where the fix is already implemented.

    Best regards,
    Rikard

Viewing 17 posts - 1 through 17 (of 17 total)
  • You must be logged in to reply to this topic.