skip to Main Content

Order Email not showing product list – Magento 2.4.3-p2

After upgrading Magento to 2.4.3-p3 version all the order emails are not showing the items in the emails. Does anyone have come across such an issue and had a solution? I can see https://community.magento.com/t5/Magento-2-x-Technical-Issues/Order-Email-not-showing-itemized-list-Magento-2-3-4/td-p/432836 but that's for Magento2.3.4 version and…

VIEW QUESTION

Get values form dynamic nested arrays in Laravel

I want to get all the values from this array: <root> <Element1> <items> <Element0> <sku>AAAA</sku> </Element0> <Element1> <sku>BBBB</sku> </Element1> </items> </Element1> <items> <Element0> <sku>ABAB</sku> </Element0> </items> <Element2> </Element2> ... ... </root> The array is from Magento2 orders API so its…

VIEW QUESTION

Could not find package magento/upgrade-compatibility-tool with stability stable

I am trying to install the Magento Upgrade Compatibility Tool on a Magento Enterprise 2.4.2 version. I am facing below error message while executing the command composer create-project magento/upgrade-compatibility-tool uct --repository https://repo.magento.com Error: [InvalidArgumentException] Could not find package magento/upgrade-compatibility-tool with…

VIEW QUESTION

Magento 2: Cannot set cookie when full page cache is enabled

I have this working code for setting the cookie for a visitor: $metadata = $cookieMetadataFactory ->createPublicCookieMetadata() ->setDuration(86400 * 90) ->setPath('/'); $cookieManager->setPublicCookie( 'cookie_name', 'cookie_value', $metadata ); But, since I enabled full page cache for the website, this code stopped working. Disabling…

VIEW QUESTION
Back To Top
Search