All things Shopify and commerce
Can anyone help me understand why there's no photo next to my website on google? I have change social sharing image, I have done favicon, I have tried quite a few things to fix this issue and my logo still isn't populating on google search results. Anyone know why this is?
Hi @Monica24
It sounds like you’re dealing with an issue where your store’s thumbnail (logo or image) isn’t appearing in Google search results. I get why this is frustrating, especially when you’ve already updated your social sharing image and favicon but still don’t see any changes. Let’s break this down and go over why this happens and what you can do to fix it.
Google doesn’t automatically display a website’s logo or social image in search results. The thumbnail that appears is usually pulled from structured data (Schema markup) or Google’s indexing preferences. If it’s missing, here are the most common reasons:
To tell Google what your official logo is, you need to add Organization structured data. You can insert this JSON-LD script into your theme.liquid file before </head>:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Store Name",
"url": "https://yourstorename.com",
"logo": "https://yourstorename.com/path-to-your-logo.png"
}
</script>
Make sure to replace "Your Store Name" and the logo URL with your actual details.
Ensure your logo URL isn’t blocked in robots.txt. You can check by going to:
https://yourstorename.com/robots.txt
If it contains:
Disallow: /logo.png
Since Google takes time to update changes, manually request reindexing:
Even though this won’t affect Google search results directly, adding Open Graph (OG) meta tags ensures proper image display across platforms like Facebook, Twitter, and sometimes Google snippets. Add this inside your <head> section:
<meta property="og:image" content="https://yourstorename.com/path-to-your-logo.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="600">
<meta property="og:image:height" content="315">
If you’ve already updated your images but don’t see results, I’d recommend:
If your image still doesn’t show up after a couple of weeks, let me know, and we can troubleshoot further!
If you need any other assistance, feel free to reply and I will try my best to help.
Best regards,
Daisy
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025