Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the LinkedIn like button and the Facebook Like button.

On the LinkedIn when I click like, it works property, but I was wondering how I would change the name of the title on the pop dialog that comes up?.

For the Facebook Like button, how would I change the image thumbnail in the pop dialog box?.

Well I got the image thumbnail to work using

 <meta property="og:image"

How ever I still have not been able to change the title for LinkedIn

I tried:

<meta property="og:title"
<meta property="og:site_name"

and none of those worked....is there a debugging site for LinkedIn, like Facebook does.

share|improve this question

1 Answer

As fas as I know, it is not og:site_name, but og:title. The code below works perfectly for me so I am enclosing it (remember to change the content). Hopefully it'll fix your problem.

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta property="fb:app_id" content="APP_ID" /> 
        <meta property="og:type" content="website" /> 
        <meta property="og:title" content="My cool website" /> 
        <meta property="fb:admins" content="ADMINS_ID"/>
        <meta property="og:image" content="http://mywebsite.com/images/mylogo.png" /> 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.