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 have created a couple of iframe apps. they can be seen here. www.facebook.com/iancareyfanpage

I have created some iframe apps and inserted the following to display a like and comments section.

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=123543567752303"></script>
<script>
FB.init({
appId : '123543567752303',
status : true,
cookie : true,
xfbml : true
});
FB.Canvas.setAutoResize(100);

</script>
</body>
</html>
<fb:comments width="500"></fb:comments>

However, when someone clicks the like button or leaves a comment the link back takes you to my actual webserver and displays the iframe app like a webpage, i need to change the url that gets put on peoples pages. sorry if i'm not explaining myself very well, hopefully someone will understand what I mean.

warm regards, Brad HOlland

share|improve this question
1  
for the like button, set the href attribute to your Facebook page. – ifaour Oct 19 '11 at 20:37
@ifaour, it should be defined for comments plugin as well to achieve same effect – Juicy Scripter Oct 20 '11 at 0:18

1 Answer

You should use href attribute to <fb:comments> tag.

See XFBML example on Comments Plugin documentation

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.