Getting Error on Admin-> Catalog->product Page.
Notice: Undefined index: name in /home/domainname/public_html/vendor/magento/module-catalog/Ui/Component/Listing/Columns/ProductActions.php on line 61
Hey,
got the same Error with vanilla Magento freshly installed. It happened, when i clicked on "ID" to sort by id.
Any Updates on that?
A few things you can do.
Sort your catalog_product_entity table by SKU and see if it's missing a SKU. Delete those rows or add a SKU to them, even if it's just temporary.
Check to see if any products have been uploaded without say the attribute price. (ID75 in this case)
SELECT * FROM catalog_product_entity WHERE entity_id NOT IN ( SELECT catalog_product_entity.entity_id from catalog_product_entity JOIN catalog_product_entity_decimal USING(entity_id) WHERE catalog_product_entity_decimal.attribute_id=75 );
I also faced the same issue in Magento 2.4.5 version, but now it is resolved.
vendor/magento/module-catalog/Ui/Component/Listing/Columns/ProductActions.php
From
'ariaLabel' => __('Edit ') . $item['name'],
To
'ariaLabel' => __('Edit ') . @$item['name'],