大虾们!路过可怜一下~在 index.php里print_r(get_promote_goods());怎么是空数组?

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



路过可怜一下吧。。我想加个显示促销商品的一类信息,比如说名字,缩略图,促销价格之类的,
就这样:
<!--{foreach from=$promotion_goods item=goods}-->
<dl class="hpro">
<dt><a href="{$goods.url}"><img src="{$goods.thumb}" /></a></dt>
<dd class="p_name"><a href="{$goods.url}">{$goods.short_style_name}</a></dd>
<dd>原价:<span class="font4">">{$goods.shop_price}</span></dd>
<dd>价格:<span class="font5">">{$goods.promote_price}</span></dd>
<dd>已售:<span class="font6">{$goods.count}</span>件</dd>
</dl>
<!--{/foreach}-->
发现前台没显示,我在index.php里print_r(get_promote_goods());
为空数组,怎么办?求高手指点一下下。

回答:
通过includes/lib_goods.php的 get_promote_goods() 修改来达到效果

谢了,解决了

谢谢了,原来是我的后台没这类信息,所以为空。。。。该死啊