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.

In my rails application, I want to connect the FB OG Meta Tags dynamically with the page that the user is currently on. I feel like this should be straightforward, but can't get it to work properly.

For example, I have "Idea" Pages, on which there is an Idea title and an Idea Description.

Currently, in my Application.html.erb file I have this (and am getting a NoMethodError for title):

<meta property="og:title" content= <%= "#{@idea.title.titleize}" %>/>
<meta property="og:url" content= <%= "http://myurl.com/ideas/#{@idea.id}" %>/>
<meta property="og:description" content= <%= "#{@idea.short_description}" %>/>

Is there an issue with my syntax? With the availability of these instance variables? I'm not sure I totally understand how this works. Thanks!

share|improve this question

1 Answer

This link is also worth checking - http://joshsymonds.com/blog/2012/07/12/rails-concerns-iii-metatags/

I have taken the above link help but that doesn't worked. The OG meta tags are not working.

Lets see what helps!

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.