西部数码主机 | 阿里云主机| 虚拟主机 | 服务器 | 返回乐道官网
当前位置: 主页 > php教程 > ecshop教程 >

修改ecshop让调用的浏览历史修改成只图或者其他

时间:2011-03-12 04:03来源:未知 作者:好模板 点击:
ecshop程序目录下 \includes\lib_insert.php 找到 调用浏览历史 这断函数,可以直接搜索下 核心代码: $str.='ul class=clearfixli class=goodsimga href='.$goods['url'].' target=_blankimg src='.$goods['goods_thumb'].' a

 ecshop程序目录下 \includes\lib_insert.php  找到 调用浏览历史 这断函数,可以直接搜索下

核心代码:

 $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 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></ul>';

比如只修改成有图有价格,不要标题,那么就是

 $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><br />'.$GLOBALS['_LANG']['shop_price'].'<font class="f1">'.$goods['shop_price'].'</font><br /></li></ul>';

 

好模板提供,请勿转载

 

(责任编辑:好模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------