If you are getting this error from Google search console on your blog then i have a quick fix to this problem. This will work on blogger blogspot.


First you need to visit Structured Data Testing tool to check the problem here


You will get an error similar to this one



Now go to your blog html code and search search the following code:

<div itemprop='publisher' itemscope='itemscope' itemtype='https://schema.org/Organization'>
    <div itemprop='logo' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
      <img src='https://myblog.com' style='display:none;'/>
      <meta content='https://myblog.com' itemprop='url'/>
      <meta content='600' itemprop='width'/>
      <meta content='60' itemprop='height'/>
    </div>
    <meta expr:content='data:blog.title' itemprop='name'/>
</div>

Now replace this code with the following:

<div itemprop='publisher' itemscope='itemscope' itemtype='https://schema.org/Organization'>

<meta content='My Blog' itemprop='name'/>

<span itemprop='logo' itemscope='itemscope' itemtype='http://schema.org/ImageObject'>

<link href='https://mylogo.jpg' itemprop='url'/>

<meta content='600' itemprop='width'/>

<meta content='60' itemprop='height'/>

</span>

<link href='http://myblog.com/' itemprop='url'/>

</div>

Make sure to replace the name of your blog, logo url and blog url.

NB: Note that you might find three similar code with schema.org/Organization. Replace all of them with the new code.


Go back to Structured Data Testing tool and confirm the changes.