We are using magento 2.4.7-p3 I have a js script inserted in admin > content > Configuration > MyStoreView > Html Head > Scripts and Style Sheets script is from external adress and it runs in every page before head closing tag. But we don’t want this script to run […]
Magento
I’m having a free theme provided by third party named FreeGo Solwin, this theme seem to load some font and js from an external site which violate the magento CSP. I’ve try add the whitelist file into folder etc of the theme but it doesnt work. This is the violation […]
My magento theme doesnt display the minicart icon, I suppose that it is messed up some where with the fontawsome, now i want to change it from using icon to just plain text ‘My Cart’. I’m using solwind freego theme.
I am importing orders from a client’s Adobe Commerce (Magento) store using the API. I need to retrieve sales channel details for orders, specifically the following information: The origin of the order (e.g., UTM source or medium, such as Google or Bing) The referring site (e.g., the HTTP referrer) The […]
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 […]
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 […]