如何让自动生成商品缩略图 默认不勾选

2016-07-07 15:11 来源:www.chinab4c.com 作者:ecshop专家

如何让自动生成商品缩略图 默认不勾选,知道的朋友请告诉一下

回答:
我看代码默认的是勾选的啊在goods_info.htm页面197行{if $gd > 0}
<br /><label for="auto_thumb"><input type="checkbox" id="auto_thumb" name="auto_thumb" checked="true" value="1" onclick="handleAutoThumb(this.checked)" />{$lang.auto_thumb}</label>{/if} 如果支持GB默认就是勾选的

修改admin/templates/goods_info.htm

<input type="checkbox" id="auto_thumb" name="auto_thumb" checked="true" value="1" onclick="handleAutoThumb(this.checked)" />
修改为
<input type="checkbox" id="auto_thumb" name="auto_thumb" value="1" onclick="handleAutoThumb(this.checked)" />

模板直接干掉