How to include custom fonts in Magento 2
Magento already provides a set of default fonts but you can manage yourself to include some custom fonts as well. In this post, we will guide you how to...
What are difference between developer and production mode in magento2
Magento 2 platform can be used in any of these 3 offered modes:
Production mode
Deployment phase on the production system; highest performance
Exceptions are not displayed to the user...
What is the difference between a path and map Requirejs
After researching this a bit more, I have found one major difference between map and path.
+ map allows for ‘prefix mapping’
+ path only allows for exact matches
Example:
Using Map:
map: {
'*': {
editTrigger: 'mage/edit-trigger',
}
}
ensure the...
Adding attribute or class to the body tag in Magento 2
In this tutorial we will explain how you can add your own class to the body tag and also I’ll add an attribute with its value in Magento 2.
See below for...
How To Add Custom JS File In Magento 2 With requireJS?
This topic discusses how to add custom js File with the components provided by Magento or custom replacement implementations.
We strongly recommend that you do not change the source code of default...
Lesson6: Templates in magento2
This topic explains how default templates work in the Magento application.
I. Templates.
1. What components can templates be found in?
● Modules
● Themes
2. What is the file structure of template files?
● Modules
view/<area>/templates/some/path/file.phtml
● Themes
<Vendor_Module>/templates/some/path/file.phtml
II. Block classes.
1. What...