Different thumbnail appears in facabook, everytime someone shares a post .

Permalink
Hello everybody.

I have been a concrete5 user for more than 5 months and i am very proud of it.
I have an issue with the latest website i have made for a friend of mine. We can post in facebook and the right thumbnail appears when it comes live. But when someone tries to share my post it comes with a different thumbnail.
I have created a page attritube called thumbnail and also the meta description and title are ok.

I cant find a solution so if somoene can help us this is the address of the site :http://www.moschatodaily.gr

 
glockops replied on at Permalink Reply
glockops
I'd recommend looking into OpenGraph, it allows you to specify how a page/object is shared on Facebook.

Here's what I do to define what a share looks like. Your millage may vary - look at the open graph docs for more details.
In the doctype, add the xmlns:og statement:
<? defined('C5_EXECUTE') or die("Access Denied."); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="http://www.facebook.com/2008/fbml">


Somewhere in the template head (either a head include or the page type): Please note, this has a ton of extra stuff in it, but it might get you started - I'm crunched for time otherwise I'd edit it down
<!-- Canonical URL -->
<?php   // Find the Canonical URL
$nh = Loader::helper('navigation');
$redirects = array();
// Check to see if this page is an alias
if($c->getCollectionPointerID() > 0) {   
   // If so, set the canonical to the original page to prevent duplicate content
   $redirects[] = $nh->getLinkToCollection($c,false);
   $canonical = Page::getByID($c->getCollectionPointerID());
   $original = $canonical;
   $canonical = $nh->getCollectionURL($canonical);   
} else {
   // Output canonical URL for original content
   $canonical = $nh->getCollectionURL($c);
   $original = $c;


These will help:
http://ogp.me/
http://developers.facebook.com/docs/opengraph/...
http://developers.facebook.com/tools/debug...
sxismatic replied on at Permalink Reply
I would like to thank you for answering!

Checking the facebook debugger i see that it doesnt "read" the thumbnail i have edited for the page i want.
I will try to do what u just said.

Thanks again for your precious help