问候,
根据标题,有谁知道如何禁用此功能?我试过以下两种方法,两种方法都不行.
方法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'));
Run Code Online (Sandbox Code Playgroud)
改成:
$this->data['popup'] = 'image/' . $image;
Run Code Online (Sandbox Code Playgroud)
在同一个文件中找到:
'popup' => $this->model_tool_image->resize($result['image'] , $this->config->get('config_image_popup_width'), $this->config->get('config_image_popup_height')),
Run Code Online (Sandbox Code Playgroud)
改成:
'popup' => 'image/' . $result['image'] ,
Run Code Online (Sandbox Code Playgroud)
方法2中catalog/view/theme/default/template/product/product.tpl找到:
<div class="image"><a href="<?php echo $popup; ?>" title="<?php echo $heading_title; ?>" class="colorbox" rel="colorbox"> <img src="<?php echo $thumb; ?>" title="<?php echo $heading_title; ?>" alt="<?php echo $heading_title; ?>" id="image" /></a></div>
Run Code Online (Sandbox Code Playgroud)
改成:
<div class="image"><a href="<?php echo $popup; ?>" title="<?php echo $heading_title; ?>" class="colorbox" rel="colorbox"></a><img src="<?php echo $thumb; ?>" title="<?php …Run Code Online (Sandbox Code Playgroud) opencart ×1