dsa80833 2016-08-11 14:08
浏览 61
已采纳

在opencart中的链接文本下显示类别图像

I’ve used OpenCart v2.2.0.0 for a client’s website as it was their eCommerce system of choice. We have gotten a lot of the preliminary design added onto the website - that's not a problem.

The issue we are having is with the category pages.

Currently, the subcategories are displaying as normal text links: http://i.imgur.com/1LORcrg.jpg

What we would like to accomplish is to feed through unique images underneath these links.

What I had in mind was whether it was possible to feed the category image below the text, so that it looks similar to this: http://i.imgur.com/zTv2hHN.jpg

Is this possible within this version of OpenCart?

Any help would be much appreciated.

Cheers, Euan

  • 写回答

1条回答 默认 最新

  • dongxie3681 2016-08-11 22:17
    关注

    Step 1: Go to catalog\view\theme\THEMEACTIVE\template\product\category.tpl Find following line of code (in default theme there are in two places)

    <?php foreach ($categories as $category) { ?><li>
    

    Then add following lines of code (if in default then add on both places)

    <a href="<?php echo $category['href']; ?>">
                <img src="<?php echo $category['category_image']; ?>" />
              </a>
    

    Step 2: Go to catalog\controller\product\category.php Find following lines of code:

    $data['categories'][] = array(
                    'name' => $result['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
    

    Add following lines of code just below it:

    'category_image' =>$this->model_tool_image->resize($result['image'], 200,200),
    

    Here 200 is the size of image, first is width and second is height. Save and it will show images

    Better to make OCMOD for it. Instead of directly writing code in core file.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择