If you have a list of records that have many duplicates and you want to highlight them so that you can remove or update it quickly. E.g. For this case You can use this formula to find duplicated rows easily in Excel and LibreOffice =IF(COUNTIF($A$1:$A$15,A1)=1,"","Duplicated") The result will be like this Hope it is Full Article…
Magento – URL Rewriting Tutorial
How to manage URL rewriting in Magento Search engine friendly URLs improve the indexing and ranking of your site, make it easier for people to come across your site when searching through search engines for particular keywords, and generally are easier to remember and improve the navigation on your site. When you add a product Full Article…
Magento – Login Into Multiple Website Store
Problem Case: The problem we are trying to solve here is, suppose you have multiple magento website setup on different domains on the same magento instance, and you want that if a customer login’s on any one our your site he is gets logged into all other sites as well. Solution: The solution for this Full Article…
Magento – Product Collection
In this blog, we will see some important function in magento product collection class. Product Collection class in magento is Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection. Lets look at the important functions Get All Products of a category 1 2 3 $collection = Mage::getResourceModel('catalog/product_collection') ->setStoreId($this->getStoreId()) ->addCategoryFilter($category); Tn this the addCategoryFilter() function, is used to get all products of a particular Full Article…