Merhaba hatalı dosyanızın yedeğini alıp aşağıdaki vereceğim kod ile değişirmisin.

// /catalog/model/extension/module/so_megamenu.php
$product = $this->model_catalog_product->getProduct($product_id);

if (is_array($product)) {
$result = array(
'name' => $product['name'],
'link' => $product_link,
'image' => $product_image,
'price' => $price,
'special' => $special
);
} else {
// Ürün verisi alınamadı, uygun bir default değer veya hata mesajı koyabilirsiniz
$result = array(
'name' => 'Default Name',
'link' => 'Default Link',
'image' => 'Default Image',
'price' => 'Default Price',
'special' => 'Default Special'
);
}