商品库存数量怎么能在3J页显示出来

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

因为有时看不出有没有货 让用户直接看到显示货的数量就行了 加哪些代码在3J页上

回答:
把库存的数量 变成 有货 或是无货,怎么改代码

<!--显示商品货存-->
<!-- {if $goods.goods_number neq "" and $cfg.show_goodsnumber and $goods.goods_number < 1} -->
<dd><strong>{$lang.goods_number}</strong><font color=#ff0000>已经断货</font></dd>
<!-- {else} -->
<!-- {if $goods.goods_number neq "" and $cfg.show_goodsnumber and $goods.goods_number < 5} -->
<dd><strong>{$lang.goods_number}</strong><font color=#ff0000>库存不足</font></dd>
<!-- {else} -->
<dd><strong>{$lang.goods_number}</strong><font color=#0000ff>库存充足</font></dd>
<!--{/if}-->
<!--{/if}-->

{if $goods.goods_number >0}{$goods.goods_number}{else}0{/if}