I know I am behind the curve on facebook. I am trying to create "Like" buttons that are behind a login but link to publicly view-able pages. The problem is most of the time the button isn't linking directly to the page but to the login page. The page is dynamic so I am not sure if that is part of the issue but sometimes the links are corrent and sometimes not.
Below are two links that link to the same page but bring up different "like" links. The second one seems to link to the www.domain.com and NOT to the actual page.
<div class="fb-like" data-href="http://www.domain.com/facebook/index.cfm/show_shareRecap/eventGuid_a563d56d-de24-4219-9da7-78a46c4ab43a/" data-send="false" data-layout="button_count" data-width="100" data-show-faces="false" data-font="verdana"></div>
<div class="fb-like" data-href="http://www.domain.com/facebook/index.cfm/show_shareRecap/eventGuid_8d354988-ad44-4608-8d4f-54be7dacdeb9/" data-send="false" data-layout="button_count" data-width="100" data-show-faces="false" data-font="verdana"></div>
The only other FB scripts that I have on the page are:
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
If anyone can point out what I am doing wrong It would be much appreciated!
