Many people are willing to install and configure Varnish on their Magento 2 instance to reap the benefit of faster page load times. Unfortunately, they tend to forget a very important step: Configuring Magento to purge Varnish with the normal…
Have you ever tried to uninstall a Magento 2 module using the bin/magento module:uninstall ModuleProvider_ModuleName and after running the bin/magento setup:upgrade it always seems to re-enable itself? Well, you’re not alone. *This is only applicable to Magento 2 modules that…
Magento 2 (specifically with release 2.2.x) has simplified the process of creating crontabs. A crontab can now be created and configured by running a simple one line command via ssh. If you’ve already set up the crontab for other modules,…
Gone are the days of creating a new admin user directly in the database. If you hadn’t discovered n98-magerun, I’m sure you are very familiar with creating a new user or updating a password via SQL queries on a Magento…
[vc_row][vc_column][vc_column_text]If you’ve ever been locked out of the Magento admin, for whatever reason, and need to create a new user, you can do so by making some adjustments to the following sql script and running it inside phpMyAdmin, or command…
Just add the following to the .htaccess file in the correct directory of the pages you would like to redirect. RewriteEngine On Redirect 301 /shop/oldFILE.html http://mywebsite.com/shop/new-subfolder-if-needed/newFILE.html Lather, Rinse, Wash, Repeat….as needed. -Will
Create the following file structure to avoid making any changes to the Magento Core files. app/code/local/Mage/Catalog/Block/Product/View/Options/Abstract.php Then open and and copy the content from app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php into the Abstract.php file you just created in your local folder. In your new Abstract.php…
One of our customers recently approached us to add an in-store pickup module to their Magento website. No problem, this is a pretty simple task and we quickly setup the module. However, the customer then notified us that they needed…