Social Suite configuration
- Basic Setup
- API Creation
- General configurable options
- General configuration
- Share Reward Discount code
- Facebook and Google Login settings
- Facebook share and Comment settings
- Using social buttons on the product page
- Using social buttons on the category products page
- Using social buttons on the category page
- Using social buttons on the store page
- Using social buttons on CMS page
Basic Setup
- Navigate to
System > Configuration > Templates-Master > Social Suite
and enable extension for any store you need. - Set Up New Facebook Application
- Set Up New Google Application
- You will need to edit some
template files:
-
Code listed below should be added to phtml file in order to display social buttons at PRODUCT PAGE. For example
app/design/frontend/[package]/[theme]/template/catalog/product/view.phtml
<?php echo $this->getLayout()->createBlock('core/template')->setTemplate('tm/socialsuite/facebook_like/like.phtml')->toHtml(); ?>
-
Code listed below should be added to phtml file in order to display social buttons at CATEGORY PAGE. For example
app/design/frontend/[package]/[theme]/template/catalog/product/list.phtml
<?php echo Mage::helper('socialsuite')->getCategoryLikeButton($_product) ?>
-