ecshop261的1112版本升级到1119版本
官方的声明在这里 http://bbs.ecshop.com/thread-69701-1-1.html
对比了下模板的文件,以下几个模板文件有所更改,发布出来,希望对制作ec模板的朋友能有所帮助。
auction_list.dwt
gallery.dwt
search.dwt
=============
history.lbi
page_header.lbi
vote.lbi
其中,auction_list.dwt的更改是把:
<span style=”margin:2px 10px; font-size:14px; line-height:36px;”>{$lang.group_goods_empty}</span>
更改为:
<span style=”margin:2px 10px; font-size:14px; line-height:36px;”>{$lang.no_auction}</span>
gallery.dwt的更改是把
<embed src=”data/images/pic-view.swf” quality=”high” id=”picview” flashvars=”xml=<products name=’{$gallery.goods_name}’ shopname=’{$shop_name}’>{foreach name=gallery_list from=$gallery.list item=photo}<smallpic{if $smarty.foreach.gallery_list.first} selected=’selected’{/if}>{$photo.gallery_thumb}</smallpic><bigpic{if $smarty.foreach.gallery_list.first} selected=’selected’{/if}>{$photo.gallery}</bigpic>{/foreach}</products>” pluginspage=”http://www.macromedia.com/go/getflashplayer” type=”application/x-shockwave-flash” width=”100%” height=”100%”></embed>
更改为
<embed src=”data/images/pic-view.swf” quality=”high” id=”picview” flashvars=”copyright=shopex&xml=<products name=’{$gallery.goods_name}’ shopname=’{$shop_name}’ water_mark_img_path=’{$watermark}’ water_mark_position=’3′ water_mark_alpha=’0.5′>{foreach name=gallery_list from=$gallery.list item=photo}<smallpic{if $smarty.foreach.gallery_list.first} selected=’selected’{/if}>{$photo.gallery_thumb}</smallpic><photo_desc>{$photo.img_desc}</photo_desc><bigpic{if $smarty.foreach.gallery_list.first} selected=’selected’{/if}>{$photo.gallery}</bigpic>{/foreach}</products>” pluginspage=”http://www.macromedia.com/go/getflashplayer” type=”application/x-shockwave-flash” width=”100%” height=”100%”></embed>
search.dwt的更改为,把
{if $key neq “sort” and $key neq “order”}<input type=”hidden” name=”{$key}” value=”{$item}” />{/if}
更改为
{if $key neq “sort” and $key neq “order”}
{if $key eq ‘keywords’}
<input type=”hidden” name=”{$key}” value=”{$item|escape:decode_url}” />
{else}
<input type=”hidden” name=”{$key}” value=”{$item}” />
{/if}
{/if}
还没有任何评论,你来说两句吧