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...
Cookies Consent Popup
- November 24, 2022
- 0 Comments
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...
- November 22, 2022
- 0 Comments
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...
- November 20, 2022
- 2 Comments

we are facing below error some times in magento CLI. how to fix that? Please check php version in your CLI thorugh php -v command. it should be like below. It shouldn't be like this.In a wrong case you should install or reconfigure the PHP Command Line Interfa...
- November 19, 2022
- 0 Comments
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()...