码迷,mamicode.com
首页 > 其他好文 > 详细

ecshop 浏览历史样式的修改

时间:2014-07-14 19:42:09      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:des   style   color   文件   os   art   

ecshop的浏览历史的样式,例如我修改的是只让浏览历史显示浏览历史的商品名称 而不显示浏览历史的商品的价格和图片
首先找到要修改 的文件includes\lib_insert.php
找到函数function insert_history()
函数里面的


$str.=‘<ul class="clearfix"><li class="goodsimg"><a href="‘.$goods[‘url‘].‘" target="_blank"><img src="‘.$goods[‘goods_thumb‘].‘" alt="‘.$goods[‘goods_name‘].‘" class="B_blue" /></a></li><li><a href="‘.$goods[‘url‘].‘" target="_blank" title="‘.$goods[‘goods_name‘].‘">‘.$goods[‘short_name‘].‘</a><br />‘.$GLOBALS[‘_LANG‘][‘shop_price‘].‘<font class="f1">‘.$goods[‘shop_price‘].‘</font><br /></li></ul>‘;


就是浏览历史的样式 下面一行 $str .= ‘<ul id="clear_history"><a onclick="clear_history()">‘ . $GLOBALS[‘_LANG‘][‘clear_history‘] . ‘</a></ul>‘;是“清空”字样的链接

我 修改的只显示浏览历史的商品名称修改的最终代码如下:

$str.=‘<ul class="clearfix"><li><a href="‘.$goods[‘url‘].‘" target="_blank" title="‘.$goods[‘goods_name‘].‘">‘.$goods[‘short_name‘].‘</a><br /></li></ul>‘

ecshop 浏览历史样式的修改,布布扣,bubuko.com

ecshop 浏览历史样式的修改

标签:des   style   color   文件   os   art   

原文地址:http://www.cnblogs.com/chen-lhx/p/3842821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!