Press "Enter" to skip to content

Fix Missing field “logo.contentUrl” Error In Search Console

Have you seen the logo of the organization in the Google Knowledge panel and ever wondered how to feature your logo too then “logo.contelUrl” is responsible for the logo in the Google Knowledge panel. Google Search uses the markup in the use case example to recognize the image to use as the organization’s logo. According to Google “Markup like this is a strong signal to Google Search algorithms to show this image in knowledge panels”.

Some of the rich result types are

Various rich result types

  1. Breadcrumb
  2. Dataset
  3. Event
  4. FAQ
  5. Fact check
  6. Guided recipe
  7. How-to
  8. Image License
  9. Job posting
  10. Logo
  11. Product
  12. Q&A page
  13. Recipe
  14. Review snippet
  15. Sitelinks searchbox
  16. Special Announcement
  17. Video

How To Fix Missing field “logo.contentUrl” Error In Search Console

If you are having an issue with your search console with logo.contelUrl then you can fix it by going through the following steps.

  1. Add the required properties like logo and URL. There are many SEO plugins that help you to set up this feature these days.  Or if you are not using WordPress and using random CMC then you can also use Javascript to generate the structured data with JavaScript.
  2. Validate your code using the Rich Results Test.
  3. Now you need to deploy a few pages that include your structured data and use the URL Inspection tool to test how Google sees the page.

Here’s a javascript example of a logo.

<html>
  <head>
    <title>About Us</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "Organization",
      "url": "http://www.9to5blog.com",
      "logo": "http://www.9to5blog.com/logo.png"
    }
    </script>
  </head>
  <body>
  </body>
</html>
Leave a Reply

Your email address will not be published. Required fields are marked *