calebo
calebo

Reputation: 3442

Different Facebook LIKE and SEND message/description

I'm using the Facebook like button code on my website, however, I was wondering if it's possible to have different message for LIKE and SEND.

I know the description is pulled from the meta tag as such:

<meta property="og:description" content="this is a description about your page you are sharing." />

Upvotes: 0

Views: 274

Answers (1)

Julio Santos
Julio Santos

Reputation: 3895

You can have the href for the send and the like buttons point at different URLs, i.e. http://example.com/your-page?ref=like and http://example.com/your-page?ref=send.

You then render your page with a different og:description according to the ref parameter.

Upvotes: 1

Related Questions