Magento 2.4.5-p1 I have exported products from Magento 2.4.5-p1. When I open the CSV file and look at the Description column, some rows show the actual Product Description while many others show the following: <div data-content-type="html" data-appearance="default" data-element Why is that and how to fix?
Magento
PHP Deprecated: round(): Passing null to parameter #1 ($num) of type int|float is deprecated in “PREPAID_TAXABLE_AMOUNT”=> (($item->getDiscountAmount()) ? abs( round($item->getSubTotal(), 2) – round($item->getDiscountAmount(), 2) ) : ” ) I am getting this error in PHP 8 & Magento2.4 How to solve it?
I’m trying to update multiple items as a batch in Version 2.4.3-p1 $productUpdates = []; foreach ($updates as $magento_sku => $data) { $productUpdates[] = [ 'sku' => $magento_sku, 'product' => [ 'price' => $data['price'], 'extension_attributes' => [ 'stock_item' => [ 'qty' => $data['qty'] ] ] ] ]; $url = 'https://example.com/rest/default/async/bulk/V1/products/bySku'; […]
I have implemented a bridge between an external system and Magento, retrieving product details for the external system and save it after processing to Magento. My problem is that when there are more than some amount of records (not many, ~100) coming from the external system my job hangs in […]
I upgraded Magento to 2.4.6 from 2.4.4, Admin was working, but frontend was not, due to Porto needing upgrade. Upgraded Porto theme to the version specifically for Magento 2.4.6. Front end loads, but is missing some styling. I checked the custom CSS in Magento Admin, and all the custom styling […]
Im stuck at checkout/#shipping with The shipping method is missing. Select the shipping method and try again. I’ve configured the flat rate shipping method and its not showing up in the page. Image reference.
Warning: Undefined array key “name” in D:xampphtdocsmage2rockvendormagentomodule-catalogUiComponentListingColumnsProductActions.php on line 61 Exception in D:xampphtdocsmage2rockvendormagentoframeworkAppErrorHandler.php:62 when I add the products the categories then those products are not displaying in products page
I just switched from AWS x86 t2.small ubuntu to AWS ARM a1.medium/2GB and the performance is terrible compared to the t2. Running Magento Open source 2.4.6 Is there anything to be done to speed up this setup? Or do I have to do the painful switch back..
Magento 2.4.5-p1 version using. We want to give custom discount via our custom module Using this code – <?php namespace NamespceModulenameControllerAdminhtmlQuote; use MagentoBackendAppActionContext; use MagentoFrameworkControllerResultFactory; use MagentoQuoteApiDataShippingAssignmentInterface; use MagentoQuoteApiDataTotalItemInterface; use MagentoSalesRuleModelRuleFactory; use MagentoSalesRuleApiRuleRepositoryInterface; use MagentoQuoteModelQuoteAddressTotal; use MagentoFrameworkAppResourceConnection; use MagentoFrameworkDBTransactionFactory; class CustomFullDiscount extends MagentoBackendAppAction { private $jsonResultFactory; protected $magentoQuoteFactory; protected $ruleFactory; […]