April 2013
magento change the number of products per row
<reference name=”product_list”> <action method=”setColumnCount”><columns>4</columns></action></reference>
Debug Magento Code
For Debug we have to use Zend_Debug::dump() function. Here is Example; Zend_Debug::dump( Mage::getModel(‘Catalog/Product’) );
How To Reset Your Password
First, open up phpMyAdmin. Click on your database name for Magento from the sidebar on the left. Click on the SQL tab and type the following in to the text box: UPDATE `admin_user` SET `password` = MD5(‘123456’) WHERE `username` = ‘admin’;
How to install OpenERP 6.1 on Ubuntu 10.04 LTS
Step 1. Build your server sudo apt-get install openssh-server denyhosts Now make sure you are running all the latest patches by doing an update: sudo apt-get updatesudo apt-get dist-upgrade Now we’re ready to start the OpenERP install. Step 2. Create the OpenERP user that will own and run the application sudo adduser –system –home=/opt/openerp –group […]
Checking Your Ubuntu Version
Your Ubuntu version can be found in two places: Under System > About Ubuntu On the System tab of System Monitor (System > Administration > System Monitor)
Magento redirecting to old URL after duplicating site
On sitea.com, you might want to take a look at its database and the core_config_data table for the base URL. OR, you could try and execute the following query: UPDATE `core_config_data` SET `value`=’http://sitea.com/’ WHERE `value` LIKE ‘http://%’ LIMIT 2; do the same on siteb.com’s database for good measure UPDATE `core_config_data` SET `value`=’http://siteb.com/’ WHERE `value` LIKE […]
where is the path of opConfig.reloadPrice(); in magento
For change custom option value, you should change in to js/varient/product.js and in that page you found, reload:function() that function call at the time of on change event. Good Luck
How To Add Tire Tier Pricing in magento?
Here’s how you do it: In the Magento admin, navigate to “Catalog -> Manage Products” Find and click the product that you want to add tier pricing to (or create a new product). Locate the “Prices” tab on the left and click on it. Click the button that says “Add Tier.” Enter the qty you […]
How to display category images in Magento static cms page
Follow the code which show images of sub category in static cms page. <?php$_categories=$this->getCurrentChildCategories() ?><?php if($_categories->count()): ?><ul class=”category-links”> <?php foreach ($_categories as $_category): ?> <?php if($_category->getIsActive()): $cur_category=Mage::getModel(‘catalog/category’)->load($_category->getId()); $layer = Mage::getSingleton(‘catalog/layer’); $layer->setCurrentCategory($cur_category); //$_imageUrl = $this->getCurrentCategory()->getImageUrl(); ?> <li class=”<?php echo $this->htmlEscape($_category->getUrlKey()) ?>”> <?php if($_imageUrl = $this->getCurrentCategory()->getImageUrl()){?> <img src=”<?php echo $_imageUrl; ?>” alt=”<?php echo $this->htmlEscape($_category->getName()) ?>” /> <? […]
magento show subcategories from categories in static block
For showing Subcategory please put this follow those steps <?php /** * ** Instructions for Use ** * * 1. Upload this page to your installation at: * /app/design/frontend/[INTERFACE]/[THEME]/template/catalog/navigation/custom-category.phtml * * 2. Enter the following code in a static block: * {{block type=”catalog/navigation” name=”catalog.navigation” template=”catalog/navigation/custom-category.phtml”}} * * 3. Select the static block as the […]