每页商品分类显示相同的热卖商品

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

我想要每页商品分类显示相同的热卖商品
我调用的他只抓取当下分类的热门商品

不知道有什么方法抓取全部的热卖商品,显示每个分类里

回答:
这个想法不错,谁会呀?

你别传分类ID进去就可以



能具体说明吗?

library/recommend_hot.lbi
要怎么不传id?
  1. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  2. <!-- {if $hot_goods} -->
  3. <!-- {if $cat_rec_sign neq 1} -->
  4. <div class="box">
  5. <div class="box_2 centerPadd">

  6. <div id="show_hot_area" class="clearfix goodsBox">
  7. <!-- {/if} -->
  8. <!--{foreach from=$hot_goods item=goods}-->
  9. <div class="goodsItem">
  10. <span class="hot"></span>
  11. <a href="{$goods.url}"><img src="{$goods.thumb}" alt="{$goods.name|escape:html}" class="goodsimg" /></a><br />
  12. <p><a href="{$goods.url}" title="{$goods.name|escape:html}">{$goods.short_style_name}</a></p>
  13. <font class="f1">
  14. <!-- {if $goods.promote_price neq ""} -->
  15. {$goods.promote_price}
  16. <!-- {else}-->
  17. {$goods.shop_price}
  18. <!--{/if}-->
  19. </font>
  20. </div>
  21. <!--{/foreach}-->
  22. <!-- {if $cat_rec_sign neq 1} -->
  23. </div>
  24. </div>
  25. </div>
  26. <div class="blank5"></div>
  27. <!-- {/if} -->
  28. <!-- {/if} -->
复制代码