织梦增加栏目缩略图、栏目图片功能的方法
网站每个栏目都有不同的banner大图,为了方便客户可以直接在后台栏目处添加和更换这个栏目图片,我们需要给dedecms二次开发,增加栏目图片上传选项。
织梦栏目添加banner大图上传选项
1.先给数据库中的dede_arctype表增加一个字段
后台 - 系统 - 系统设置 - SQL命令行工具
ALTER TABLE `dede_arctype` ADD `typebigpic` CHAR( 255 ) NOT NULL DEFAULT '';
2.打开 \dede\templets\catalog_add.htm 搜索
name="typename"
在它的</tr>下面加入
<script language='javascript' src=http://www.dede58.com/a/dedejq/"js/main.js"></script> <tr id="pictable"> <td height="24" colspan="6"> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td width="158"> 图片地址:</td> <td width="560"> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <tr> <td height="30"> <input name="typebigpic" type="text" id="picname" style="width:220px" value="" /> <input type="button" name="Submit2" value="站内选择" style="margin-left:8px;" onClick="SelectImage('form1.picname','');" class='np coolbg'/> </td> </tr> </table> </td> <td width="270"> <style> .divpre,.divpre img{height:50px;} </style> <img src=http://www.dede58.com/a/dedejq/"images/pview.gif" width="100" height="50" id="picview" name="picview"> </td> </tr> </table> </td> </tr>3.打开 \dede\templets\catalog_edit.htm 搜索
name="typename"
在它的</tr>下面加入
<script language='javascript' src=http://www.dede58.com/a/dedejq/"js/main.js"></script> <tr id="pictable"> <td height="24" colspan="6"> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td width="158"> 图片地址:</td> <td width="560"> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <tr> <td height="30"> <input name="typebigpic" type="text" id="picname" style="width:220px" value=http://www.dede58.com/a/dedejq/"<?php echo $myrow['typebigpic']?>" /> <input type="button" name="Submit2" value="站内选择" style="margin-left:8px;" onClick="SelectImage('form1.picname','');" class='np coolbg'/> </td> </tr> </table> </td> <td width="270"> <style> .divpre,.divpre img{height:50px;} </style> <img src=http://www.dede58.com/a/dedejq/"<?php if($myrow['typebigpic']!="") echo $myrow['typebigpic']; else echo "images/pview.gif";?>" width="100" height="50" id="picview" name="picview"> </td> </tr> </table> </td> </tr>4.打开 \dede\catalog_add.php 搜索
$in_query = "INSERT INTO `dede_arctype`(reid,topid,sortrank,typename
改成
$in_query = "INSERT INTO `dede_arctype`(reid,topid,sortrank,typename,typebigpic
继续搜索
VALUES('$reid','$topid','$sortrank','$typename'
改成
VALUES('$reid','$topid','$sortrank','$typename','$typebigpic'
5.打开 \dede\catalog_edit.php 搜索
`smalltypes`='$smalltypes'
改成
`smalltypes`='$smalltypes',`typebigpic`='$typebigpic'
6.打开 \include\taglib\channelartlist.lib.php 搜索
typedir
改成
typedir,typebigpic
7.打开 \include\taglib\channel.lib.php 搜索
typedir
改成
typedir,typebigpic
注意:这个文件有4处都需要改
8.打开 \include\taglib\type.lib.php 搜索
typedir
改成
typedir,typebigpic
9.\include\arc.listview.class.php 搜索
//设置环境变量
在它下面添加
$this->Fields['typebigpic'] = $this->TypeLink->TypeInfos['typebigpic'];
后台栏目效果
前台模板中调用标签
{dede:channelartlist}{dede:field.typebigpic/}{/dede:channelartlist} {dede:channel}[field:typebigpic/]{/dede:channel} {dede:type}[field:typebigpic/]{/dede:type}栏目列表页单独调用
{dede:field.typebigpic/}
☉本站的源码不会像其它下载站一样植入大量的广告。为了更好的用户体验以后坚持不打水印
☉本站只提供精品源码,源码在于可用,不在多!!希望在这里找到你合适的。
☉本站提供的整站程序,均带数据及演示地址。可以在任一源码详情页查看演示地址
☉本站所有资源(包括源码、模板、素材、特效等)仅供学习与参考,请勿用于商业用途。
☉如有其他问题,请加网站客服QQ(984818011)进行交流。
- 织梦dede首页列表页获取文章对应的tag标签
- 织梦dede导航栏目顶级和二级判断二级输出不同url
- 织梦dede标签array runphp静态生成乱码BUG解决方法
- 织梦dede如何禁止会员发布文章内容带超链接
- 织梦ajax跨域提交自定义表单和跨域验证码问题
- 织梦CMS MIP文章内容页图片适配百度MIP规范
- 织梦CMS时间格式实现XX秒前、XX分钟前、XX天前
- 织梦DedeCMS更新系统缓存增加清理沉余缓存的功能
- 织梦CMS让channelartlist标签支持currentstyle属性的
- 织梦dede自带编辑器替换百度ueditor编辑器
- 织梦DEDECMS整站动态化或整站静态化设置方法
- 织梦dede 模板路径templets目录都有什么?