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.

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

报告相同问题?

悬赏问题

  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀