It doesn't appear that White-label stores display the logo uploaded to the BO Store settings when appearing the Google search listings.
It seems Google look for specific tags in the homepage. Is it possible to implement something like this please? Happy to upload a .ico file if needed.
https://developers.google.com/search/docs/appearance/favicon-in-search
Comments
My web site has the favicon displaying at Google.
I am not following Google recommendations, and I do not have a relative link to my favicon within the html files.
I am using a text file called "site.manifest" at the root directory of the site. Here is Mozilla's referrence:
https://developer.mozilla.org/en-US/docs/Web/Manifest
here is the content of my site.manifest file:
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
I am using the complete suite of favicons generated by favicongenerator. Seems every platform wants icons tailored to their specific needs. I think I have at least 10 of them. These also sit in the root directory of the site, but I suppose they could go anywhere as long as the "src" line in site.webmanifest has an absolute full url.
https://www.favicongenerator.com/
also check their reference page
https://www.favicongenerator.com/reference
You may want to give that a go. Worst that happens is nothing happens.
There was also a separate issue where some stores had logos that were not square, so we updated the system to add blankspace around them so they will become square.