Magento 2 check request from website or API
Magento2: How to check if the request is from Web Service or Magento 2 check request from website or APIToday we will share an idea to identify the request is coming from API or website.Sometimes need a condition to check the page called for the mobile app user to the browser user.The code level to […]
Magento 2 speed optimization
Magento 2 speed optimization, Magento’s low performance is the lack of server/hosting resources. The hosting solution that powers the Magento store is the key to the success of the Magento store. Magento speed also affected third-party modules and theme customization. As a normal Magento page, it takes more than 3s to load a page There […]
Enable or Disable minify CSS or JS in Magento
In this blog, we will discuss about how we can enable or disable minify CSS/JS in Magento 2. Follow below steps for enable or disable- From admin panel enable/disable Minify CSS or JS- Stores > Configuration > Advanced > Developer > CSS SettingsStores > Configuration > Advanced > Developer > JavaScript Settings In MySQL, use […]
Custom controller in Magento admin panel
Custom controller in Magento admin panel, Magento controller has only one execute method that is known as front controller.For every action, we have one controller class with execute method. Execute method is called when the router matches the controller action class, and it’s responsible for returning a response to the front controller. Today we clear […]
UI Components Grid and Layout Grid in Magento
This blog cover the difference between UI components grid and layout grid in Magento. Magento introduces a new way to create a grid in the admin area called UI grid. It is flexible and easy to extend. There are key differences listed below- UI Components Grid Advantages-1. It is mostly configuration. So you write less […]
Grouped Product V/S Bundle Product in Magento
In this blog, we will discuss the difference between Grouped Product V/S Bundle Product in Magento. Below is the detailed description: Grouped Product: Grouped Product is a set of simple products, they display on product detail page. Customer can change only quantity of product when adding product into cart. For example, if you want buy […]
Product Types in Magento
Today we will discuss product types in Magento. Magento out of the box provides six kinds of products, even with a custom one, which can meet all your needs in business.You choose the best product type for your store. These are six types of products:- 1) Simple, 2) Grouped, 3) Configurable, 4) Virtual, 5) Bundle […]
Configure Redis cache On The Magento 2
Configure Redis cache On The Magento 2, we will see how to configure Redis cache on Magento 2. We are going to explain this in 3 simple steps. Below are the steps :- 1. Install Redis on the server. 2. Use Redis for the Magento page and default cache. The following example enables Redis page […]
How To Show Cookie Popup in Magento 2
Today, we will see how to show cookie popup in Magento2 on website.When user open or access first time website, its ask to accept terms policy.This model popup show until visitors accept or close. Apply below bootstrap and jquery code to show popup- HTML code <div id=”cookie-popup-window” style=”display:none;”> <p>Accept cookies policy</p> </div> <script type=”text/javascript”> require([ […]
Custom attribute not saving in Magento 2
Custom customer attributes not saving on DB in Magento 2, you need to debug in database.have added a custom customer attribute named is customer_mobile.It is displayed as expected in the admin forms, to create a new customer or to edit an existing customer.When you create a custom customer attribute, it enters into the below tables.1. […]
Magento 2.4.2 features and new release
Magento Open Source 2.4.2 release notes enhance all the security improvements in which they have included magnification to support the SameSite attribute for all cookies.Magento 2.4.2 directly specifies the support of Redis 6.x. as well as elastic search 7.9 and compatibility with Composer 2.x and Varnish 6.4. Magento 2.4.2 system requirements- PHP 7.4.0 Composer 1.x […]