Jamersan | Magento and BigCommerce Elite Partner Agency

Uninstall a Magento 2 Module with Composer

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…

Easy 301 Redirect

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

Remove “+” (plus symbol) from Custom Option Prices in Magento

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…