在首页商品详细介绍的问题

2016-07-07 16:43 来源:www.chinab4c.com 作者:ecshop专家

我在官方模版的“新品上市”(library\new_goods.lbi)库中加入了“详细介绍”的代码({$goods.goods_desc})但为什么更新后无法显示出详细介绍的信息呢?

library\new_goods.lbi的全部源码如下:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- {if $new_goods}-->
<div class="title-div"><img src="../images/new_products.gif" alt="New products" width="158" height="39" /></div>
<div class="content-div">
<!--{foreach from=$new_goods item=goods}-->
<table border="0" cellpadding="3" cellspacing="1" class="goods-table" style="float: left">
<tr>
<td rowspan="3" align="center"><a href="{$goods.url}"><img src="{$goods.thumb}" width="{$thumb_width}" height="{$thumb_height}" border="0" alt="{$goods.name|escape:html}" class="thumb" /></a></td>
<td ><a href="{$goods.url}">{$goods.name|escape:html}</a>

</td>
</tr>
<tr>
<td > <div class="content-div">{$goods.goods_desc}</div>
</td>
</tr>
<tr>
<td ><!-- {if $goods.promote_price neq ""} -->
{$lang.promote_price}<span class="goods-price">{$goods.promote_price}</span>
<!-- {else}-->
{$lang.shop_price}<span class="goods-price">{$goods.shop_price}</span>
<!--{/if}--></td>
</tr>
</table>

<!--{/foreach}-->
<br style="clear:both"/>
<div style="text-align:right"><a href="search.php?intro=new">more...</a></div>
</div>
<!-- {/if} -->

回答:
在精品,新品等等部分,程序并没有调用出来商品的详细介绍。
如果您需要显示一些简介,您可以在录入的时候输入商品简介的内容,在模板中调用{$goods.brief}即可

哦,原来 是这样3Q