Jenssen
Jenssen

Reputation: 1871

Share image whatsapp not visible

I've been trying for 3 days now to set a sharable image for whatsapp. But it does not show up. Facebook, twitter and messenger is working but whatsapp does not find my og:image.

enter image description here

This is my site: http://sayhi.dog

In the <head> I have this:

<meta property="og:image" itemprop="image" content="http://sayhi.dog/social-img.png?v=2"/>
<meta property="og:image:secure_url" content="https://sayhi.dog/social-img.png?v=2" />
<meta property="og:url" content="https://sayhi.dog/" />
<meta property="og:type" content="Website" />
<meta property="og:title" content="SayHi.dog" />
<meta property="fb:app_id" content="2151404768488502" />
<meta property="og:description" content="SayHi.Dog is een nieuw platform voor hondenouders. Leer wat het is, meld je hond aan, win prijzen en verdien beloningen voor jouw hond." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Vrienden uitnodigen">
<meta name="twitter:description" content="SayHi.Dog is een nieuw platform voor hondenouders. Leer wat het is, meld je hond aan, win prijzen en verdien beloningen voor jouw hond.">
<meta name="twitter:image" content="https://sayhi.dog/social-img.png?v=1">
<meta name="twitter:domain" content="https://sayhi.dog">

What could be wrong here ?

Upvotes: 1

Views: 429

Answers (1)

Dakota Maker
Dakota Maker

Reputation: 633

The issue is coming from the size of your image. According to this very nice post and @Cedriga, the max size for an image to be displayed is 300KB and after downloading your image I can see your image is almost 800KB:

screenshot of the file size

You will either have to get a different picture or try and compress the image!

One site I found after a quick google search to compress a png can be found here: https://tinypng.com/

Upon using it out of my own curiosity it managed to compress the image to ~213KB and it looks pretty good imo:

screenshot of compression

enter image description here

Upvotes: 2

Related Questions