When developing in Magento and playing arround with Magento Themes there is some functions you should know. If you want…
Magento
Here’s how to reset your file and directory permissions if PHP is running through FastCGI, suPHP, or LSAPI: find ….
When you migrate your Magento website from location to another, or you change the domain-name under which it is running,…
This knowledgebase explains how to disable the Customer Reviews link from displaying in your product page. The easiest way to…
Varien_Object and Varien_Collection are the parent/super class for most of the Magento Models and Collections respectively. The path for Varien_Object…
Magento is a feature rich e-commerce platform which offers several shipping methods out of the box. However, when building large…
I needed a custom button to call a url. I wanted this button to appear above my grid in Admin>Sales>Orders.This…
System > My Account :-If you would like to change your default password and user name, the security of your…
<?php if(strlen($pname) > 28) {echo substr($pname,0,25);}else {echo $pname;}?>
Get all items information in cart// $items = Mage::getModel(‘checkout/cart’)->getQuote()->getAllItems();$items = Mage::getSingleton(‘checkout/session’)->getQuote()->getAllItems();foreach($items as $item) {echo ‘ID: ‘.$item->getProductId().’‘;echo ‘Name: ‘.$item->getName().’‘;echo ‘Sku: ‘.$item->getSku().’‘;echo…





