:::: MENU ::::

Magento Tutorial | Magento Blog | Learn Magento 2

Are you a Magento 2 Developer? then you are at right place.

Cookies Consent Popup

In this article, we are going to understand the RequireJS Configuration in Magento 2. Magento 2 used Require JS Configuration properties are the map, paths, shim, mixins, and deps. In Magento, We have to declare all the Require JS configuration properties inside the requirejs-config.js file. You can declare the requirejs-config.js file at different AREA Scope like frontend or adminhtml. A requirejs-config.js file contains the root config object, under the root config object you have to declare...
Magento 2 cost: CE vs. EE The difference that strikes the eye at once is the price. While Magento 2 CE is free, the EE version is paid and the price depends on your business value. Magento 1 EE license cost starts at $18.000 per year. Magento 2 EE license cost is based on a revenue model. In other words, the price depends on how much your store revenue is. Here is the Revenue X License Cost X Percentage for Magento 2 EE table: Revenue (USD) License...
Magento 2 is a powerful ecommerce platform providing out-of-the-box features. However, there may be times when you need to extend the platform to meet specific business requirements. This is where custom GraphQL comes in! If you’re unfamiliar with GraphQL, it’s a query language for APIs developed by Facebook (now Meta). It allows developers to get the data they need and only receive it in response to their queries. Magento...
If you are planning to add Recently Viewed products to your website then always use default magento approach. below approach is deprecated. Because its not fully compatible with FPC so,now days magento using knockoutJS for Recently Viewed products. If you need to add a 'Recently Viewed' products block specifically via layout xml, use the same class Magento\Catalog\Block\Widget\RecentlyViewed which the 'Recently Viewed' Product widget uses. This will render a simple grid with the last 4 products view by the user. You can configure...
First, You must have installed the Mailchimp extension in your project.To Synchronize Mailchimp with Magento facilitate the subscription to the Newsletter for the customer and get the service of Mailchimp that will provide a lot of other additional services to the Magento platform.How to configure Mailchimp in Magento 2?1) Mailchimp -> Configuration,2) From the Mailchimp General Configuration Section,Choose Yes from the...
 After upgrading to 2.4.3-p1 this issue occursActually it was a problem with upgrade from 2.3.6 to 2.4.3 - magento added 2FA to login in 2.4 and on my Windows installation, for some reason, instead of showing error informing me that i need to configure 2FA to login, it just reloaded login form without any notice or errors.Disabling 2FA module will solve the issue.please run below command in terminal Magento root path :    bin/magento module:disable Magento_TwoFactorAuth    bin/magento cache:flush&nb...
basically shim is used to avoid dependency conflict. For example if you calling a **custom javascript** then it must be loaded after javascript library isn't it? but magento doesn't know whether the library is loaded or not. So using shim we'll let system know that it is dependent on **library** so it will be instantiated when we map shim.AndMagento uses requirejs to speed up the stuffs and (asynchronously module dependencies) nature of require js. So we use shim to tell the machine load our defined dependency first i.e., **jquery**If we don't...
That error indicates somewhere in your code passing null to the third parameter when calling a PHP function that is deprecated in PHP 8.1.Assume you have below code:return sprintf( $path, str_replace('methods_', '', $method) ); The type of the third parameter should be changed to string if it is null. So the fixed code looks like the below:return sprintf( $path, str_replace('methods_', '', $method ?? '') ); The solution for your code:$fromDate = date("Y-m-d",strtotime(str_replace("/", "-", $helper->getNewYearBallFromDate()...
 Abstract Class:An abstract class is a class that contains at least one abstract method. The abstract method is function declaration without anybody and it has the only name of the method and its parameters.There can be any number of methods in the class and we have to declare the class as abstract only when there is an abstract method.An abstract class is a class that is only partially implemented by the programmer. It may contain one or more abstract methods. An abstract method is simply a function definition that serves to tell...
First you need to create your cron file in `Cron` directory as belowapp/code/Vendor/Module/Cron/Mycron.php    <?php       namespace Vendor\Module\Cron;       class Mycron        {          protected $logger;          public function __construct(        \Psr\Log\LoggerInterface $loggerInterface          ) {        $this->logger = $loggerInterface; ...
"catalog_product_save_before" This event gets called for every product save action, including new products.In order to use it you could do the following in your module:**app\code\Vendor\Module\etc\webapi_rest\events.xml**    <?xml version="1.0"?>    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">        <event name="catalog_product_save_before">            <observer...
Magento 2 Database Missing Table Error "inventory_stock_1"Error:Exception #0 (Zend_Db_Statement_Exception): SQLSTATE[42S02]: Base table or view not found: 1146 Table 'inventory_stock_1' doesn't exist, query was: INSERT INTO `search_tmp_5c4f24124efa61_76233970` SELECT `main_select`.`entity_id`, SUM(score) AS `relevance` FROM (SELECT DISTINCT `search_index`.`entity_id`, (((0) + (0)) * 1) AS `score` FROM `catalog_product_index_eav` AS `search_index` INNER JOIN `catalog_product_entity` AS `product` ON product.entity_id = search_index.entity_id INNER...
This article is about Magento 2 – Update product attribute value . Updating product attribute value can be tricky sometimes. In this tutorial i will try to explain it swiftly and in a simple way. There can be various conditions in this matter. Like if someone wants to update the attribute values one by one or as a whole. Here, we are looking t update only one attribute value.We can set all the values into one object (also we can use set for each attribute) & using set method we can save the product attribute with the help of productRepository or product...