I am facing the issue with MFTF testing. I want to submit my custom shipping module to marketplace but I got the error MFTF Adobe Commerce Supplied fail. how to test to my module and how to resolve the below error. I have run the command to test and I […]
Magento
I’m trying to add an attachment to an email in Magento 2.4.6. I’ve searched extensively online, but most of the solutions I’ve found are either outdated or don’t work with the latest version of Magento. Does anyone have a working example or detailed steps on how to achieve this in […]
Magento2 multiply the qty of first item if add two configurable item into cart programmatically with same parent product. $items = [ [ 'product_id'=>'47', 'parent_id'=>'62', 'qty'=>1 ], [ 'product_id'=>'48', 'parent_id'=>'62', 'qty'=>1 ] ]; foreach($items as $item){ if(isset($item['parent_id']) && !empty($item['parent_id'])){ //$quote = $checkoutSession->getQuote(); $product = $productModel->getById($item['parent_id']); $childProduct = $productModel->getById($item['product_id']); $productAttributeOptions = […]
I’ve been experiencing this issue for a while. Some of the confirmation emails do not display the product details. There are no errors in the PHP logs, so I suspect it might be a condition-related problem. Is there any way to debug how the email renders the product details? This […]
Hopefully somebody can shed some light on this issue. I have a REST handler that will bulk-update products per store view. Like text translations etc. Since the provided attributes could be anything, ranging from core attributes and custom attributes I use the main endpoint “products” and provide the product info […]
I am trying to upload images to Magento using the API. We have 5 images, one of which is a thumbnail, one is the base image, and one is a regular image. The problem is that when I upload the images, the order is not correct—the thumbnail image is not […]
I did a database dump from production using this command magerun2 db:dump --strip="@development" var/dec18.sql Did an import on my DEV environment. Changed the web/unsecure/base_url and web/secure/base_url . I only have one website and 2 stores. NO fancy things here. I ran the setup:upgrade , setup:di:compile and rm -rf pub/static/frontend/ && […]
I have installed the Mageplaza_SocialLogin module in Magento 2.4.6 for Google social login and configured it as well. However, when I try to use it on the frontend, it gives me a 403 Forbidden error. To check, I added a die() in the files, and when the callback URL is […]
I recently upgraded Magento from version 2.4.6 to 2.4.7-p3. After the upgrade, I noticed that the ‘Special Price From’ and ‘Special Price To’ calender have been moved to the bottom of the product page. I’ve already tried removing all custom modules, but the issue persists on my existing website. To […]