cancel
Showing results for 
Search instead for 
Did you mean: 

Undefined index: vendor/magento/module-catalog/Ui/Component/Listing/Columns/ProductActions.php

Undefined index: vendor/magento/module-catalog/Ui/Component/Listing/Columns/ProductActions.php

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

error-.pngInventory _ Catalog _ Magento Admin-error.pngProduct_ Catalog _ Magento Admin.png

 

 

 

3 REPLIES 3

Re: Undefined index: vendor/magento/module-catalog/Ui/Component/Listing/Columns/ProductActions.php

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?

Re: Undefined index: vendor/magento/module-catalog/Ui/Component/Listing/Columns/ProductActions.php

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
);

Re: Undefined index: vendor/magento/module-catalog/Ui/Component/Listing/Columns/ProductActions.php

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'],