I have a daily deal aggregator site and i can't get the Facebook share to work properly. There are lots of deals on each page and each one has it's own FB share so they can post it on their wall, friends walls etc.

here is the site so you can try the share: http://bit.ly/xFGzj5

Here is the code Im using now:

<!-- Each Deal has this button that links to FB -->
<a href="http://www.facebook.com/share.php?u=<?php echo urlencode($shareurl); ?>" onclick="return fbs_click('<?php echo urlencode($shareurl); ?>','<?php echo $title; ?>')" target="_blank"><img src="../../images/fb.png" border="0" alt="Share On Facebook" class="smicon" /></a>

<!--And here is the JS function:-->

<script>
function fbs_click(u,t) {
window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
return false;
}
</script>

With this method, right now the title is not working properly, and sometimes an image shows up, sometimes it doesn't. When an image does show there are about 200 thumbnails to choose from (depending on how many deals are on the page) so the user has to cycle through it until they find the right one.

Ideally, I want the url/title working properly (obviously) and have the image go to that specific deal's image by default when they click the share button. Anyone have any ideas on how to make this work???

link|improve this question
It must take forever to load too. Each "like" opens up its own iframe and connection back to FB. – Diodeus Feb 14 at 15:45
feedback

1 Answer

up vote 1 down vote accepted

why are you taking this approach? i recommend using either the social widgets or the javascript sdk fb provides.

for example, with the js sdk you can do this: https://developers.facebook.com/docs/reference/dialogs/send/

as for the social widgets, you can add a like for each item: https://developers.facebook.com/docs/reference/plugins/like/

or send button: https://developers.facebook.com/docs/reference/plugins/send/

link|improve this answer
Hi Nitzan. Thanks for the reply. I have looked into these widgets a little bit. The first and third one you suggested looks like it can only be shared in a private message. My goal is for users to be able to post to their own timeline or a friends timeline. The like button intrigues me a little bit, but I want to be able to specify the title and image someone shares. I see there are the open graph tools where you can specify this info, but based on that I can only have 1 generic image and 1 generic title for the hundreds of deals that are on my page. Any thoughts? Thanks! – Curtis Mangione Feb 15 at 16:30
ok, then what's the problem with the 2nd widget? – Nitzan Tomer Feb 15 at 16:33
Ya the like button has none of the details I want. All it can do is say a user likes the URL where my deal is. It says nothing on their wall/timeline about the deal title or the image. Is what I want even possible? – Curtis Mangione Feb 15 at 16:49
1  
well, the facebook share button is deprecated (developers.facebook.com/docs/share) and so i strongly advise against using that. as i see it you should either use the like button, or use the js sdk to open up a fb dialog for sharing like here: developers.facebook.com/docs/reference/dialogs/feed – Nitzan Tomer Feb 15 at 17:02
That's perfect!! Thank you very much for your help Nitzan! – Curtis Mangione Feb 15 at 21:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.