Answer the question
In order to leave comments, you need to log in
Why does VKontakte display the OpenGraph picture last (not the cache)?
I insert a link to the page with the product on VKontakte, and instead of the product image (og:image), logo.jpg is loaded, it sometimes clings, but the last one in the list is displayed.
It's not about cache. How to solve the problem?
<header>
<meta content="product.jpg" property="og:image">
</header>
<body>
<header>
<img src="logo.jpg">
<img src="banner.jpg">
</header>
<article>
<img src="product.jpg">
</article>
</body>
Answer the question
In order to leave comments, you need to log in
Try immediately after body add product.jpg to img, but hide it
<header>
<meta content="product.jpg" property="og:image">
</header>
<body>
<img src="product.jpg" style="display:none">
<header>
<img src="logo.jpg">
<img src="banner.jpg">
</header>
<article>
<img src="product.jpg">
</article>
</body>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question