If you want to change the SKU of large number of products with new one, you can do it by Magento Dataflow product import. Add a column named ‘your-new-sku’ and fill the values with that column in your product import CSV in addition to ”your-old-sku” and other required columns for data import. Add the following code in proper place (saveRow() function) in your corresponding Model Class file (app\code\core\Mage\Catalog\Model\Convert\Adapter\Product.php). Read More>
If any CMS or other page contains image or flash object, the submenus are not displayed over flash or image object. The menu will appear underneath that objects. The menu can be displayed by adding some css styles. For that open corresponding css files and add the following css classes, if menus are created by ul- li tags
.menuclass ul {z-index:999;} Read More>
While installing custom module in Magento with new table, if you got the error as ‘Can’t retrieve entity config’. This may be because of you forgot to define your new entity table in config.xml file in your custom module inside tag Read More>
In the case of a few Magento Stores they encounter problem in getting the shipping coupon code working. Given below are the ways to solve this issue: Read More>
We can disable all email communication in Magento by Read More>
It is observed many times that the today’s date indicated by the calendar on Manage Products page is wrong. So if the Hosting server date is correct, please do as below to get correct date display. Read More>
If you already have setup a table prefix for Magento tables, you have to use ‘{$this->getTable (yourtablename)}’ instead of specifying the table name as ‘yourtablename’ in SQL queries. This will automatically add table-prefix to newly added tables, if set any.
For E.g.:
Use this one Read More>
By default Magento version 1.4.x does not display the products in frontend, if item’s stock status is set as ‘Out of Stock’. For displaying these products in frontend the following steps can be followed, Read More>
Magento stores dealing in a few thousands of products with reasonably good number of images can undergo issues while the store becomes popular and the number of hits increases. The final result will be store crashing with the below error message. Read More>
Creating an order in the backend subtotal can be messed up in case of custom prices. Read More>