Monthly Archives: July 2014
-
- July 21, 2014
Magento Facebook Connector extends used to create or login to your magento store . Easy to create an account in your magento store . Does`t need to enter username & password in magento store , just need to facebook account to access magento store .
-
Magento login
-
Magento User Creation
-
Magento Login in checkout page
magento store admin need to create the Facebook app for that store . We will help to create the Facebook app .
-
Just need the Facebook app id .
-
-
- July 19, 2014
You have created a new entity type and want to display it as a paginated list ?
First, integrate the MagePageBlockHtmlPager through your block :
class Your_Module_Block_Entityname_ListextendsMage_Core_Block_Template {
protectedfunction _construct() {
parent::_construct();
// We get our collection through our model
$this->_entities = Mage::getModel('your_module/entityname')
->getCollection()
->setOrder('created_at');
// Instantiate a new Pager block
$pager =newMage_Page_Block_Html_Pager();
// We set our limit (here an integer store in configuration).
// /!\ The limit must be set before the collection
$pager->setLimit((int)Mage::getStoreConfig('your_module/entityname/pagination'))
->setCollection($this->_entities);
// Add our Pager block to our current list block
$this->setChild('pager', $pager);
}
}ou just need now to include the call in your template (phtml) file :
<divclass="your_module_entities">
<?php foreach($this -
- July 12, 2014
Magento Helpdesk used for customer support . For this magento Customer Support system you customer can create support ticket from magento dashboard . From this extension your customer can create the following ,
For Customer
- Create the ticket .
- Can view list of ticket available by created for you ,
- Customer can replay the the ticket ,