Magento2.4.6: How to apply Security/Quality patches to magento open source?
My website is on magento2.4.6 open source and I want to apply all security/quality patches available to date. Where I can find all the patches list and how to apply them?
Auto Added by WPeMatico
My website is on magento2.4.6 open source and I want to apply all security/quality patches available to date. Where I can find all the patches list and how to apply them?
When I access checkout shipping step, my default shipping address is preselected, right after page is successfully loaded, then there is additional reload of shipping methods (loader is shown) and my selected shipping address became unselected. There is no more… Read More »Magento 2 | Default shipping address not selected on checkout
I have update my store to Magento version 2.4.6-p6 Aaaand there is an issue with newly added restricted CSP policy on checkout page. I have a bunch inline scripts that are added via admin panel (Content->Design->Configuration->Theme->Html head). Most of them… Read More »Magento CSP – design inline scripts
Currently we are using magento 2.4.6-p6, we are recently noticing below issue in the console, while opening the cms blocks / cms pages from admin. Access to XMLHttpRequest at ‘https://website.com/static/version1721183017/adminhtml/Magento/spectrum/en_US/js-translation.json’ from origin ‘null’ has been blocked by CORS policy: Response… Read More »Magento 2 – Access to XMLHttpRequest – /adminhtml/Magento/spectrum/en_US/js-translation.json has been blocked
I held off on upgrading Magento to 2.4 for several years, and now I have to do it because of changes to the UPS API; one module we have, uGiftCert, cannot be purchased or updated anymore, and I am a… Read More »Migrating an old module from Magento 2.3.6 to Magento 2.4
I have a cart-items-mixin.js define([‘Magento_Catalog/js/price-utils’, ‘Magento_Checkout/js/model/quote’, ‘ko’,], function(priceUtils, quote, ko) { ‘use strict’; return function(CartItems) { return CartItems.extend({ (…) showDetails: ko.observable(false), handleShowDetails: function() { this.showDetails(true); }, initialize: function() { this._super(); (…); } }); }; }); and the template: <!– /**… Read More »How to keep track of this of the parent component when calling a parent function inside a foreach loop in the template in knockout?
I have a site, with multiple stock sources, and backordering enabled. When I test adding to cart, Magento is not taking into account stock in all sources when determining the number of items to be back ordered. EG Default source:… Read More »Magento 2.4 MSI stock sources and product salableqty
a customer of mine has a problem with his Magento2 store and the connected eBay account. He created multiple products under a specific category and sold them over the M2E Pro extension at eBay. After some days, the clients of… Read More »M2E Pro eBay product not visible after refund
I am trying to create a free order with code, it all works up until adding a shipping address and method, it crashes with errors instead of creating the quote and i can’t see why as the code looks fine… Read More »Magento 2.4.6-p3 – Creating an order programmatically causes errors when adding shipping address to quote
Even if I simply copy the file without changes, it does not work as a preference. Any idea why? I created a preference in di.xml <?xml version=”1.0″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:ObjectManager/etc/config.xsd”> <preference for=”MagentoCheckoutControllerCartAdd” type=”MycompanyMyappControllerCartAdd” /> </config> I am simply trying to… Read More »Magento2.4 How to override MagentoCheckoutControllerCart?