How to add custom block for shipping methods in onepage checkout in Magento 2
To add custom block for shipping methods in onepage checkout in Magento 2, you should do the following actions: Continue Reading
To add custom block for shipping methods in onepage checkout in Magento 2, you should do the following actions: Continue Reading
Utilize CLI to reset lost admin password in Magento 2. You should create a new admin user able to change your forgotten password. Use the following command, to generate a new user: Continue Reading
To override email HTML files in Magento 2, create the [Vendor]/[ModuleName]/view/frontend/layout/checkout_index_index.xml file with the following content: Continue Reading
To extend JavaScript class/method of checkout model class in Magento 2, create requirejs-config.js in your module with Continue Reading
In Magento 2 to add date field in admin from a core model, pass all required to parent::__construct() arguments, which should be called from __construct(). Please note that both your construct class and parent construct must accept the same list of arguments. Add new dependencies in the following way: Continue Reading
There is a replacement of Mage::log method in Magento 2: Continue Reading
To create Magento 2 custom collection query, use the same principle as in case of 1.x (Magento 2 SQL query syntax s the same). For instance: Continue Reading
To extend layout from vendor folder in Magento 2, move your xml file to: Continue Reading
To get product collection in custom template block in Magento 2, use the following code. It is a trick, since you should never use object manager directly, but at the same time the only way to avoid creating a new block: Continue Reading