本帖最后由 谦哥 于 2013-5-16 16:14 编辑
需要的是商品原图,就是后台上传时的那张些图,并非要缩略图或者popup的图,没用经过裁切的。
非常需要这个功能啊! 谢谢大家,能帮帮忙吗,找了很久了。
已解决,提供一个从opencart官网找到的方案 适合1.5.5.1
/catalog/controller/product/product.php
找到:
$this->data['popup'] = $this->model_tool_image->resize($image, $this->config->get('config_image_popup_width'), $this->config->get('config_image_popup_height'));
修改为:
$this->data['popup'] = 'image/' . $product_info['image'];
找到:
'popup' => $this->model_tool_image->resize($result['image'] , $this->config->get('config_image_popup_width'), $this->config->get('config_image_popup_height')),
修改为:
'popup' => 'image/' . $result['image'],
调用的时候用 $popup行了 |