Magento has an indexing method that increases page speed of the user interface. The so called EAV (Entity Attribute Value) is data storage solution which is very flexible, but its…
New Magento Security Scan Tool is available! Finally , Magento has launch a feature to scan Magento online store for virus, known security risks, malware, and unauthorized access.You can scan…
Here are all the 60 questions of Magento test of Upwork.You can pass Magento test on Upwork using those answers of Magento test.You will also get the Top 10%, Top…
There are many questions from the Magento merchant and Magento developers about migrating to Magento 2. Now Magento released the latest Magento 2.2.2 version with 96 bug fix and additional…
Migrate from Magento 1 to Magento 2 using UB Themes Data Migration tool Magento 1.x will sunset on 18th Nov 2018 and you should now migrate your Magento 1 to…
You can get all the attribute by using the sql query. Run the following sql query to get the list of all product attributes in magento select attribute_id, attribute_code, frontend_label…
If you have deleted any product from magento and now if you want to restore deleted products back to magento store catalogs then you can do it by using available…
If you want to debug any module and functionality you want to find the log.Every developers love the logs. While working with magento extension development or customization you need to…
If you want to get all discount coupons codes of magento.Please use the folllowing code $sales_rules_collection = Mage::getModel(‘salesrule/rule’)->getCollection(); foreach($sales_rules_collection as $rule) { if($rule->getData(‘is_active’) ==1) { $rule->getData(‘name’); $rule->getData(‘code’); $rule->getData(‘simple_action’); $rule->getData(‘discount_amount’); }…
Some time you need to add many select option in magento attribute and this will take time to add options one by one in magento admin panel. So here is…