config.php içinde cdn imaj yolunu tanımlayın
define('HTTP_IMAGE', 'https://cloudinary.com/');

catalog/model/tool/image.php içinde
return $this->config->get('config_ssl') . 'image/' . $new_image;
satırını aşağıdaki ile değiştirin
return HTTPS_IMAGE . $new_image . '" width="' . $width . '" height="' . $height;

return $this->config->get('config_url') . 'image/' . $new_image;
satırını aşağıdaki ile değiştirin
return HTTP_IMAGE . $new_image . '" width="' . $width . '" height="' . $height;

admin/model/tool/image.php içinde
return HTTPS_CATALOG . 'image/' . $new_image;
satırını aşağıdaki ile değiştirin
return HTTPS_IMAGE . $new_image . '" width="' . $width . '" height="' . $height;

return HTTP_CATALOG . 'image/' . $new_image;
satırını aşağıdaki ile değiştirin
return HTTP_IMAGE . $new_image . '" width="' . $width . '" height="' . $height;

catalog/controller/payment/skrill.php, catalog/controller/total/voucher.php, catalog/model/checkout/order.php, catalog/model/openbay/ebay_product.php, catalog/model/tool/image.php dosyalarında
$this->config->get('config_url') . 'image/'
satırını aşağıdaki HTTP_IMAGE olarak değiştirin


$this->config->get('config_ssl') . 'image/'

satırını aşağıdaki HTTPS_IMAGE olarak değiştirin