-
1. Re: Facebook Like Button for Individual Products
Scott B Reynolds Jul 2, 2012 12:12 PM (in response to Tarik :: Creativaholic)Allowing the visitor to ‘Like’ the current page is as simple as adding BC’s facebooklike module to the Large Individual Product layout (or anywhere else):
{module_facebooklike, moduleTemplateGroup="", language="en_US", url="", layout="", showFaces="true", width="450", verb="like", font="", colorScheme=""}
http://kb.worldsecuresystems.com/134/bc_1345.html#main_Social_Media_Modules
To add the Facebook Like button to the Small Individual Product layout you’ll need to make a simple change. Go to ModuleTemplates > SocialMedia > FacebookLike > Default > container.html
Copy the code in the container.html. It will look like this:
<script src="http://connect.facebook.net/{tag_language}/all.js#xfbml=1"></script><fb:like href="{tag_url}" layout="{tag_layout}" show_faces="{tag_showfaces}" width="{tag_width}" action="{tag_verb}" font="{tag_font}" colorscheme="{tag_colorscheme}" send="{tag_sendbutton}"></fb:like>
Paste it to the Small Individual Product layout. Change the tag_url to tag_itemurl_withhost. It will look like this:
<script src="http://connect.facebook.net/{tag_language}/all.js#xfbml=1"></script><fb:like href="{tag_itemurl_withhost}" layout="{tag_layout}" show_faces="{tag_showfaces}" width="{tag_width}" action="{tag_verb}" font="{tag_font}" colorscheme="{tag_colorscheme}" send="{tag_sendbutton}"></fb:like>
Changing the tags will allow people to like the individual product page without even going into it.
-
2. Re: Facebook Like Button for Individual Products
Tarik :: Creativaholic Jul 2, 2012 8:20 PM (in response to Scott B Reynolds)And that works like a charm!

