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've tried every variation I can think of to add the current url path to the href in the facebook comments div. Why doesn't this work?

<div class="fb-comments" data-href="<%= #{request.protocol}#{request.host_with_port}#{request.fullpath} %>" data-width="470" data-num-posts="2"></div>

I've also tried this but the end of the ruby injection code seems to end the div this way:

<div class="fb-comments" data-href=<%= "#{request.protocol}#{request.host_with_port}#{request.fullpath}" %> data-width="470" data-num-posts="2"></div>
share|improve this question

1 Answer

up vote 0 down vote accepted

I needed to use a content_tag which converted the original facebook comments div:

<div class="fb-comments" data-href="http://example.com" data-width="470" data-num-posts="2"></div>

into this:

<%= content_tag(:div, nil, :class => 'fb-comments', "data-href" => "#{request.protocol}#{request.host_with_port}#{request.fullpath}", "data-width" => '470', "data-num-posts" => "2"  ) %>
share|improve this answer
thanks for the answer railsy – railsy Dec 21 '12 at 20:12
hey no problem railsy, anytime – railsy Dec 21 '12 at 20:13

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.