How to add Facebook Like on a product page in Magento
To add a Facebook Like button on each product page in Magento you simply need to add the following code anywhere in your app/design/frontend/theme/theme/template/catalog/product/view.phtml template: <a name=”fb_share” type=”button”></a> <script src=”http://static.ak.fbcdn.net/connect.php/js/FB.Share” type=”text/javascript”> </script> <?php elseif($_share == ‘facebook_like’): ?> <script src=”http://connect.facebook.net/en_US/all.js#xfbml=1″></script><fb:like show_faces=”true” width=”450″></fb:like> <?php endif; ?> Full Story