求dedecms文章内容页添加tags标签的方法是什么?谢谢
漂浮广告用如下代码:
<html xmlns="http://wwww3org/1999/xhtml"><head>
<title>js实现可关闭的自由漂浮广告代码_js特效_特效代码_wwwxunmzycom</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<style type="text/css">
#img1{width:auto;position:absolute;top:43px;left:2px;z-index:10;}
#img1 div{width:auto;text-align:right;font-size:12px;}
#img1 div a:link{text-decoration:none;}
#img1 div a:hover{color:red;text-decoration:none;}
#img1 img{width:auto;border:1px solid black;}
p{margin-top:50px;text-align:center;}
</style>
</head>
<body>
<div id="img1" onmouseover="pause_resume()" onmouseout="pause_resume()">
<div><a href="javascript:void(0);" onclick="closediv()" title="点击关闭">关闭</a></div>
<a href="https://wwwxunmzycom/" target="_blank"><img src="images/logo_pngpng" alt="js实现可关闭的自由漂浮广告代码"></a>
</div>
<p>js代码可关闭的自由漂浮的广告特效</p>
<script type="text/javascript">
var xPos = 300;
var yPos = 200;
var step = 1;
var delay = 30;
var height = 0;
var Hoffset = 0;
var Woffset = 0;
var yon = 0;
var xon = 0;
var pause = true;
var interval;
var divid = img1; //浮动DIV的ID
dividstyletop = yPos;
function changePos(){
width = documentbodyclientWidth;
height = documentbodyclientHeight;
Hoffset = dividoffsetHeight;
Woffset = dividoffsetWidth;
dividstyleleft = xPos + documentbodyscrollLeft;
dividstyletop = yPos + documentbodyscrollTop;
if(yon){yPos = yPos + step;}else{yPos = yPos - step;}
if(yPos < 0){yon = 1;yPos = 0;}
if(yPos >= (height - Hoffset)){yon = 0; yPos = (height - Hoffset);}
if(xon){xPos = xPos + step;}else{xPos = xPos - step;}
if(xPos < 0){xon = 1;xPos = 0;}
if(xPos >= (width - Woffset)){xon = 0; xPos = (width - Woffset);}
}
function start(){
dividvisibility = "visible";
interval = setInterval('changePos()',delay);
}
function pause_resume(){
if(pause){
clearInterval(interval);
pause = false;}
else{
interval = setInterval('changePos()',delay);
pause = true;
}
}
function closediv(){
clearInterval(interval);
dividstyledisplay = "none";
}
start();
</script>
</body>
</html>
把需要改的地方改了就可以了,
您好,朋友。跟版网很高兴为您解答:
这个的话如果你装了畅言,那么织梦默认评论的模板文件为:ajaxfeedback2htm这个文件,找到以下代码:
<script type="text/javascript">//<![CDATA[
windowCKEDITOR_BASEPATH='{dede:globalcfg_cmsurl/}/include/ckeditor/';
//]]>
</script>
<script type="text/javascript" src="{dede:globalcfg_cmsurl/}/include/ckeditor/ckeditorjst=B8DJ5M3"></script>
{dede:php}
GetEditor('msg','',100,'Feedback','print','false',true);
{/dede:php}
这段代码是调用了编辑器的,您的意思是不要编辑器这种,直接要多行文本那种框吗?
上段代码直接改为:
<textarea name="msg" cols="112" rows="5"></textarea>希望您的意思是这样的,也希望我的回答能够帮到您。跟版网-专业织梦模板定制下载站 genbanorgTag标签是web20的东西,相当于关键词。我们在使用dedecms的时候应该如何在文章内容页添加TAG标签功能呢Tag标签对于SEO帮助很大,具体修改方法有以下2种方法:
方法一:打开文章模板文件article_articlehtm;在{dede:fieldbody/}后面添加以下代码:
<div>
TAG标签:{dede:tag row='30' sort='new' getall='0'} <a href='[field:link/]'>[field:tag /]</a>{/dede:tag}
</div>
更新生成文档页,再查看效果。
方法二:织梦dedecms文章页调用Tag标签比较简单,1、找到文章模板在{dede:fieldbody/}后面加入{dede:fieldtags/}这个标签即可。但是织梦dedecms默认的Tag标签是没有链接的,接下来进行第二步。
2、给Tag标签加超链接
大家找到网站跟目录下的/include/helpers/archivehelperphp,找到120行左右。
if ( ! function_exists('GetTags'))
{
function GetTags($aid)
{
global $dsql;
$tags = '';
$query = "SELECT tag FROM `dede_taglist` WHERE aid='$aid' ";
$dsql->Execute('tag',$query);
while($row = $dsql->GetArray('tag'))
{
$tags = ($tags=='' $row['tag'] : ','$row['tag']);
}
return $tags;
}
}
替换成以下代码:
if ( ! function_exists('GetTags'))
{
function GetTags($aid)
{
global $dsql;
$tags = '';
$query = "SELECT tag FROM `dede_taglist` WHERE aid='$aid' ";
$dsql->Execute('tag',$query);
while($row = $dsql->GetArray('tag'))
{
$tags = ($tags=='' ''$row['tag']'': ',''
'$row['tag']''); }
return $tags;
}}
搜狐畅言进入网站后台
登录你的帐号密码
模块-插件管理-搜狐畅言卸载
生成即可!
或者直接在模板内容页找到对应的的搜狐畅言代码去掉,生成即可!
模板居织梦模板
为您解答
祝你成功
望采纳
可以用栏目内容替代原来栏目单独页的更灵活的一种方式,可在栏目模板中用{dede:fieldcontent/}调用,通常用于企业简介之类的用途。
网站栏目管理--增加顶级栏目,添加栏目(以添加“某某概况”的单页面为例)
2高级选项:修改列表栏目文件名list_articlehtm为list_article_contenthtm,其他不变。
3在栏目内容中写下单页内容:
4打开模板文件夹(默认为defaulttempletsdefault),复制文件list_articlehtm
更名为:list_article_contenthtm,并在相应适合位置加入单页栏目标签{dede:fieldcontent/}。
5栏目生成更新,完成单页栏目添加。
如果出现缓存比较严重的话,建议先清除浏览器缓存,再打开网页查看;
1、下载安装包,登录织梦官网或百度搜索DEDECMS官方网站,目前最新版本为V57。
2、上传系统源文件,把压缩包内的upload目录下的文件上传到你的虚拟主机空间(或者服务器)。
3、运行安装程序,直接访问你的网站域名,系统自动跳转到安装向导页面。
4、许可协议,选中我已经阅读并同意此协议点击继续,这里系统跳转到环境检测页面。
5、环境检测,点击继续进入参数配置。
6、参数配置-数据库设置,填写连接信息,数据表前缀建议不要用默认的dede_。
7、参数配置-管理员初始密码,设置后台超级管理员的用户名和密码,注意一定要修改,默认都是admin可以说就是一种漏洞。
8、参数配置-网站设置及测试体验数据,注意这里不选择体验数据。
9、安装模块,系统自动安装选择的功能模块,例如最近加入的畅言评论模块。
10、安装完成,可以登录后台看看效果
11、登录后台,输入刚才设置的超级管理员账户和密码。
12、安装及检查完毕。
DEDECMS很容易入门,用的人多,漏洞也多,所以安装完之后要进行安全性设置。
求采纳。纯手打。
应该是你服务器环境的问题造成的,你现在模块里卸载了畅言模块,重新安装下试试,如果不行,就是你服务器环境的问题了,修改conf_files目录下phpini中allow_call_time_pass_reference = On应该就好了!希望对你有用!
0条评论