The following below steps need to follow to add CMS Pages in Top Menu in Magento 2.x / Adobe Commerce.
Step [1] – Go To STORES > Catalog, redirects on configuration.

The following below steps need to follow to add CMS Pages in Top Menu in Magento 2.x / Adobe Commerce.
Step [1] – Go To STORES > Catalog, redirects on configuration.
Step [1] – Left Panel Menu Sales
Magento Magento 2.x & Adobe Commerce 2.x , Full Page Cache is the Free In Built service for smart caching solution that allows to reduce the server load time, speed performance and improves the response time due to the fast loading of API, Block, CMS, Product, & Catalog pages.
The following below steps need to follow to create Custom 404 Page.
Step [1] – Go To STORES > Configuration, redirects on configuration.
As per business need, multiple times need to configure Email Template as
New User Account Creation Email Template
User Forgot Password Email Template
User Remind Password Email Template
Payment Confirmation Email Template
Payment Failed Email Template
Sales Order Email Template
Sales Invoice Email Template
Sales Shipment Email Template
Here we are putting example ,
How To Configure New User Account Creation Email Template
Step [1] – Go To Admin Panel > Marketing > Communications > Email Templates.
The following below Top 10 Ecommerce Platforms 2022
1- Shopify
3- BigCommerce
4- Squarespace
5- Tiendanube
6- VTEX
7- Big Cartel
8- WIX
9- Zyro
10- Weebly
Magento 2 events are used to run custom code in response to any particular Magento 2 event or custom event. Events are dispatched by modules when certain actions are triggered. When an event is dispatched, it can pass data to any observers configured to watch that event.
The following below display list of Magento 2.x & Adobe Commerce 2.x List of Events.
Continue reading “Magento 2.x or Adobe Commerce 2.x List of Events”The following below steps to create custom module using Events & Observer
Step [1] – Nominate Module Name ::
Syntax as below
Namespace_Modulename =Mage2db_John
Magento2 Root Directory / app /code / Mage2db / John
Step [2] – Create a module’s registration file :: This file name is registration.php & used to registered module.
File Path as below
Magento2 Root Directory / app /code / Mage2db / John / registration.php
Write below code in registration.php
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Mage2db_John',
__DIR__
);
Continue reading “How To Create Events & Observer Using Custom Module in Magento / Adobe Commerce 2.x” The following below steps to create custom module using plugin
Step [1] – Nominate Module Name ::
Syntax as below
Namespace_Modulename =Mage2db_John
Magento2 Root Directory / app /code / Mage2db / John
Continue reading “How To Create Plugin Using Custom Module in Magento / Adobe Commerce 2.x” The following below steps to create custom module using preference
Step [1] – Nominate Module Name ::
Syntax as below
Namespace_Modulename =Mage2db_John
Magento2 Root Directory / app /code / Mage2db / John
Continue reading “How To Create Preference Using Custom Module in Magento / Adobe Commerce 2.x”