ecshop 浏览历史样式的修改

时间:2024年01月31日

/

来源:网络

/

编辑:佚名

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>'
修改商品名称长度,找下代码
sub_str($row['goods_name'], $GLOBALS['_CFG']['goods_name_length'])
修改成:sub_str($row['goods_name'], 16,$append = true)
上面代码,16是标题长度,这里是按照中文字符算的,16就表示16个中文。$append = true表示当原标题超过18个字符时,以【…】结尾。
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。