cybn 发表于 2017-1-12 02:22:46

ecshop商品分类页调用当前分类下的子分类

一日客户想调用分类页的当前分类下子分类,网上百度了下,各种解决方法,不过一一试了一下都不行
,小编决定还是自己写下程序吧,效果如下
http://upfile.ecmoban.com/data/descimg/20150428/14302074434185.png

首先先打开includes下lib_goods.php写一个调取语句 代码如下 (可以加到这个文件的20几行左右)
function get_child_cat($parent_id=0)//分类页调用子分类 不调用三级ecmoban.com
{
    $sql="SELECT * FROM ".$GLOBALS['ecs']->table('category')." WHEREparent_id = '$parent_id' AND is_show = 1 ";
    return $GLOBALS['db']->getAll($sql);
   
}
第二步,打开根目录category.php


找到以下代码:
$smarty->assign('categories',       get_categories_tree($cat_id)); // 分类树给它下面加入以下代码:
$smarty->assign('childcat',       get_child_cat($cat_id)); // 分类页调用当前分类子分类
最后在分类页模板category.dwt里调用自定义lbi
给lbi里写以下代码 :
<div class="screeBox clearfix" style=" border:2px solid #D1CCC7;">
    <strong>分类:</strong>
   <ul class="show_box" style=" height:30px; overflow:hidden; position:relative; border-bottom:none">
      <!--{foreach from=$childcat item=cat name=childcat}-->

      
      <li><a href="category.php?id={$cat.cat_id}" >{$cat.cat_name|escape:html} </a> </li>
         
         
   

    <!--{/foreach}-->
   </ul>


</div>
这里的样式根据不同模板自定义啦
页: [1]
查看完整版本: ecshop商品分类页调用当前分类下的子分类