【推荐】【简单】一级分类页面只显示该分类小分类的最简单的方法

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

lib_goods.php

文件.
  1. if (isset($row['cat_id']) != NULL )
  2. {

  3. $cat_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);

  4. }
复制代码
更改为
  1. if ($cat_id == null)
  2. {
  3. $cat_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);
  4. }
  5. else if ($row['cat_id'] == $cat_id )
  6. //else if (isset($row['cat_id']) != NULL )
  7. {

  8. $cat_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);
  9. //$cat_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);
  10. }
复制代码

回答:
不错,收藏一下

不是很明白啊,有没有演示图片啊。

如果其他分类不显示呢?而不是隐藏,如果做?

如果让其他分类不显示呢?而不是隐藏,如何做呢?

没有效果

LZ有演示图吗。