Magento 2.3 Cover Customizing Layout Illustration Theme layout

Please read first post Magento 2.3 creat New Theme. Magento 2 Blank theme provide hooks to core functionality. Only the files or modules that are changed should be incorporated into custom themes. When creating a child theme, it is necessary to ensure a parent theme is named. Please go to vendor/magento/theme-frontend-luma, it is a suggestion … Continue reading “Magento 2.3 Cover Customizing Layout Illustration Theme layout”

Magento 2 Extension Tutorial

A Magento extension is a block of PHP code – a combine of functions, added into Magento to extend its functionality.  Magento extensions allow you to add custom features and functionality to every area of your Magento store including the front and back end, integrations with other web services, marketing tools, themes and more. Extensions are developed … Continue reading “Magento 2 Extension Tutorial”

How To use RequireJS and Ajax in Magento 2 Extension

I have introduced How to get Items to frontend in Magento 2 extension in previous post so you can have an simple extension now . When you building Magento extension , you have to jquery and ajax to build separate function. If you can use Jquery like simple html in magento but in Magento you … Continue reading “How To use RequireJS and Ajax in Magento 2 Extension”

How to get Items to frontend in Magento 2 extension

I have done the most basic tasks in backend of extension in previous posts so you can manage,filter,add,update,delete items from Grid in backend. I will introduce How to get Items to frontend in Magento 2 extension. This is the tasks that we will show use for end user. It include 6 parts: Create Controller Create layout … Continue reading “How to get Items to frontend in Magento 2 extension”