织梦dedecms会员中心我的收藏新增一个自定义字段显示

织梦cms会员中心的收藏里面,每条收藏的信息把他对应的描述内容也显示出来。

那么怎么做呢?

1、打开/member/mystow.php

差不多19行到25行,把这段代码 替换为:

1

2

3

4

5

6

7

 

if($rank == 'top'){

        $sql = "SELECT s.*,COUNT(s.aid) AS num,t.*  from dede_member_stow AS s LEFT JOIN `dede_member_stowtype` AS t on  t.stowname=s.type left join `dede_archives` AS ar on ar.id=s.aid  group by s.aid order by num desc";

        $tpl = 'stowtop';

    }else{

        $sql = "SELECT s.*,t.*,ar.* FROM `dede_member_stow` AS s left join `dede_member_stowtype` AS t on t.stowname=s.type left join `dede_archives` AS ar on ar.id=s.aid   where s.mid='".$cfg_ml->M_ID."' order by s.id desc";

        $tpl = 'mystow';

    }

 

2、打开/member/templets/mystow.htm  和 /member/templets/stowtop.htm

搜索收藏时间  在收藏时间上面加这句代码

1

2

3

 

<tr>

  <td colspan="6" class="tabTitle tbBtm">描述:<?php echo $fields['description']; ?></td>

</tr>

 

完成

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/478c53aca0a9f96c781a9e7264ed0b52.html