首页 >

织梦DedeCMSadvancedsearch模糊搜索页面显示自定义字段的方法

在DEDE织梦系统下,高级搜索advancedsearch结果页默认不能显示自定义字段,可以通过修改程序来实现:

织梦DedeCMSadvancedsearch模糊搜索页面显示自定义字段的方法

第一步:找到/plus/advancedsearch.php文件,在第224行附近找到以下代码:

$query = "select main.id as aid,main.*,main.description as description1, type.*     from $maintable main    left join dede_arctype type on type.id=main.typeid    left join $addontable addon on addon.aid=main.id    $where  $orderby";

第二步:修改第一步中的查询语句,添加自定义字段查询内容,加上”,addon.*”如下:

$query = "select main.id as aid,main.*,main.description as description1, type.* ,addon.*     from $maintable main    left join dede_arctype type on type.id=main.typeid    left join $addontable addon on addon.aid=main.id    $where  $orderby";

通过以上方法就可以在高级搜索页显示的自定义字段的数据了。



织梦DedeCMSadvancedsearch模糊搜索页面显示自定义字段的方法
  • 织梦DedeCMS判断导航二级栏目为空不显示方法
  • 织梦DedeCMS判断导航二级栏目为空不显示方法 | 织梦DedeCMS判断导航二级栏目为空不显示方法 ...

    织梦DedeCMSadvancedsearch模糊搜索页面显示自定义字段的方法
  • 织梦DedeCMS第三方响应式后台辅助插件不显示新模块和插件的搞定方式
  • 织梦DedeCMS第三方响应式后台辅助插件不显示新模块和插件的搞定方式 | 织梦DedeCMS第三方响应式后台辅助插件不显示新模块和插件的搞定方式 ...

    织梦DedeCMSadvancedsearch模糊搜索页面显示自定义字段的方法
  • 织梦DedeCMS中的文档关键词下划线的问题
  • 织梦DedeCMS中的文档关键词下划线的问题 | 织梦DedeCMS中的文档关键词下划线的问题 ...