Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Favicon not appearing in Google Search

Favicon not appearing in Google Search

dizainer
Shopify Partner
5 0 0

Can I get some help with the website of my client please? The favicon was appearing previously but no longer appears on Google Search now. I tried to change the pixel size in the code itself to 48px but when that didn’t work and the favicon also disappeared from the Google Chrome tab when I opening the site, I just returned it to the previous 32pixels. Now the favicon appears on the Google chrome tab but still not on Google search. 

i don’t know what else to do. Can someone help please?

 

website: https://www.arabiceduhub.com/

Reply 1 (1)

AcidPi
Shopify Partner
61 14 16

Hi,

Reference this, https://developers.google.com/search/docs/appearance/favicon-in-search
Try requesting a new google crawl, If that doesn't work update your link code and request another google crawl.  

Favicons can be mysterious due to each browser, service and device handling them differently... You can also use this online tool to test your website and create all the possible types of favicons for all devices plus the files to upload and HTML for the theme.liquid file. - https://realfavicongenerator.net

Current - Only issue's are rel is using an older value (should still work) and missing the size attribute.

 

<link rel="shortcut icon" href="//www.arabiceduhub.com/cdn/shop/files/AEH_logo-3_32x32.png?v=1694490726" type="image/png">

 

Suggestion 1 - Updated rel and added size.

 

<link rel="icon" type="image/png" href="//www.arabiceduhub.com/cdn/shop/files/AEH_logo-3_32x32.png?v=1694490726" size="32x32">

 

Suggestion 2 - Based on googles reference.

<link rel="icon" href="//path/to/ico/file/favicon.ico" >

 

Regards