The new version 6.5.3 of the Slider Revolution Magento 2 module has been released recently. It has a lot of new features and improvements. A couple of new awesome Add-Ons have been added as well.
read morePHP
Implementing Two Factor Authentication Using Magento
You will secure the Magento store from hackers, keyloggers, illegal logins, data sniffing software, and other attacks with the Magento Two Factor Authentication (2FA).
read moreHow to Uninstall Slider Revolution Magento 2 Extension
Install Magento 2.4 on Windows Problem Solved
We will install the latest Magento 2.4 on the Windows local PHP web server and eliminate those errors one by one.
read moreIncrease PHP memory limit
Sometimes you might get “Fatal error: Allowed memory size of …” PHP error. Usually this means that you run out of memory. It is recommended to double check your code and profile your app with xDebug. It should tell you which function is called how often and how much memory it eats. However, the code […]
read moreUpgrade to PHP 5.6 on Debian 7 “Wheezy”
Official Debian packages contain PHP 5.4 at the moment. If you need higher version, you need to use 3rd-party repositories such as dotdeb. Generally it is recommended to use the official packages. However, sometimes there are reasons to use third party repositories. And this is one of them. Process of upgrade to PHP 5.6 on […]
read moreMagento two modules extend same class problem solution for Slider Revolution extension
Extending modules instead of modifying them is a good practice in Magento development. But what will happen if in Magento two modules extend same class? This can occur when two extensions extend same class for own needs. In this case only the last one will get benefit from extending it. And the first one will […]
read moreHow To Make Wunderadmin Magento Admin Theme Work With Localized Module
Wunderadmin Magento Admin Theme overrides two page templates: header.phtml and footer.phtml. If some other extension, like Localized one overrides them too it will cause issues with admin theme. To solve this problem need to override them again. To do it copy header.phtml and footer.phtml templates from /app/design/adminhtml/default/default/template/magento_localized/ to /app/design/adminhtml/default/wunderadmin/template/magento_localized/ and do the following changes to […]
read moreHow To Create Vertical Navigation Menu in Magento Admin
In this article we will describe how to create vertical navigation menu in Magento admin panel. This will be helpful if you want to improve usability of admin panel by taking advantage of modern wide monitors. Or if you want to give a fresh look to custom Magento admin theme. To turn top horizontal navigation […]
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 more