System configuration in magento is the heart of your store. You can setup almost any aspect of website in configuration. This is also a place to store configuration settings of your extension. This article show how to add element with text. You can use this element to add help section or insert information about your […]
read moreTips & Tricks
Configuration group expanded by default
Most magento extension has its own section in admin configuration. Sometimes you want to have one of configuration groups to be expanded. All you need to do is add expanded parameter to it. It will define whether the group is expanded by default when viewing that particular tab section. Configuration section / groups defined in […]
read moreRestrict Access to Magento Admin Area in Nginx
It is pretty easy to restrict access to magento admin area in nginx. Basically you need to update configuration file and restart it.
All commands applicable for debian. There might be different syntax for other versions.
Magento category attributes dependency
There is no default way to create dependent category attributes in magento admin. Dependency can be easily added to system configuration inputs or custom magento forms, but not for category attributes. We are going to create simple attribute dependency by adding new input renderer for attribute. It will work this way: You have several attributes: […]
read moreHow to override Magento admin theme template file
You as Magento developer sometimes will wish to override Magento admin theme template files. This comes in need in process of developing custom magento admin skin or some extension that will extend Magento backend design and functionality. Basically adminhtml part keeps the same fallback ideology that is used on front end, but with some slight […]
read moreMagento module Fatal error: helper class not found
It is pretty common magento error. Even if you yourself don’t use helper, Magento admin does. You should always create helper class in your custom module. File location depends on module code pool and could be located in ….
read moreNew products block does not change currency
Magento has default new products block. It can be added to cms home page via shortcode. However, if you have multiple currencies and try to switch to different currency new products still show price in old one. This happens due to block cache…
read moreMagento not working in iframe?
If you try to load your store in iframe and did not successed you definitely has X-Frame-Options issue that is caused by new magento option that disable embedding. Magento team has added a new setting in Magento 1.9 Community Edition and Magento Enterprise Edition 1.14 : Allow Magento Frontend to run in frame. It is […]
read more