您的位置:首页 > 运维架构

解决ECShop首页缩略图和产品页图片模糊方法

2015-04-20 16:07 295 查看
    第一:解决首页“新品上架”、“热卖商品”、“精品推荐”栏目里的缩略图模糊:

依次打开Themes/模板文件/library/下的recommend_new.lbi 、recommend_hot.lbi 、recommend_best.lbi ,

将 

<img src="{$goods.thumb}" alt="{$goods.name|escape:html}" class="goodsimg" />  

替换成:

<img src="{$goods.goods_img}" alt="{$goods.name|escape:html}" class="goodsimg" />

    第二:解决产品页(商品页)图片模糊方法:

打开在Themes/模板文件/下打开good.dwt



<img src="{$goods.goods_img}" alt="{$goods.goods_name|escape:html}" width="360px;" height="360px"/>

替换成:

<img src="{$goods.original_img}" alt="{$goods.goods_name|escape:html}" width="360px;" height="360px"/>

完毕!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息