Earlier you could download any magento version from Download page in Tech Resources section. But not so long ago Magento has removed the official links and reworked download page. Now you can download only 2.x-related resources like source code / sample data / patches. This is part of Magento Software Lifecycle Policy. If you are […]
read moreTips & Tricks
Magento 2: Allow backend run in frame
Recently I’ve got request to make magento backend working in iframe. Quick googling gives me link to official documentation with instructions on how to setup storefront to be displayed in iframe. I did not pay attention to storefront
word at that point. Backend still not work in iframe and gives an error…
GIT: Ignore changes in tracked file
I had some experience with GIT, but it was limited to basic things like pull, commit, push. Recently I started working on project which has database configuration file. I needed to modify it, but do not want to commit any changes made. Basically I wanted git to ignore changes in tracked file. My first attempt […]
read moreMagento 2: Console Commands Shortcuts
You often need to use CLI commands while working with Magento 2. But you might miss the fact that all magento 2 console commands has short form. The nature of these shortcuts comes from Symphony framework used by magento team. Each magento console class that implement command line functionality use Symfony\Component\Console\Command component to implement command […]
read moreMagento 2 : Product image size and other options
Magento 2 product image size and other image options are defined in <theme_dir>/etc/view.xml. Themes located in app/design/frontend/<Vendor>/ folder. But magento built-in themes can be located in vendor/magento/theme-frontend-<theme_code> when you install it from the composer repository. /etc/view.xml contains images configuration for all storefront product images and thumbnails. This file is required for a theme, but optional […]
read moreMagento 2 Bundle and Merge JavaScript Modes — Why Better To Enable Separately
Magento 2 Bundle and Merge JavaScript Modes can improve performance of your eCommerce website dramatically. But should you enable them simultaneously or separately? While supporting our Slider Revolution Extension for Magento 2 we found JavaScript error on clients website. This problem was related to both merge and bundle javascript options enabled. In this configuration slider […]
read moreHow to install Slider Revolution Magento 2 extension
In this guide you will learn how to install Slider Revolution Magento 2 extension. For this operation we will need our extension package and shell access to server with your Magento 2 installation. First you need to upload extension files to the root of your Magento 2 e-commerce installation. Once uploaded you will see extension […]
read moreMagento 1.x: How to enable template path hints
To enable template path hints in Magento: Login to the magento back-end Go to System > Configuration Go to Developer section on the bottom left under ADVANCED Switch to the store view on the top left to your current website or store view. Open Debug and set “Template Path Hints” = Yes. Optionally you can […]
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 moreSUPEE 7405: Cannot remove the item from Cart
After installing SUPEE 7405 patch on client site i notice cart issue. When you add a product to the cart and trying to remove it, you got “Cannot remove the item.” error.
The issue is connected to changes in app/code/core/Mage/Checkout/controllers/CartController.php
read more