dedecms怎么实现楼层数

前端之家收集整理的这篇文章主要介绍了dedecms怎么实现楼层数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

dedecms怎么实现楼层数@H_403_4@ @H_403_4@

Dedecms怎么实现楼层数? @H_403_4@

DEDE评论效果: @H_403_4@

推荐:《dedecms教程》 @H_403_4@

dedecms怎么实现楼层数@H_403_4@ @H_403_4@

修改后的效果: @H_403_4@

dedecms怎么实现楼层数@H_403_4@ @H_403_4@

修改步骤 @H_403_4@

一、5.5版本(5.6版本请往下看) @H_403_4@

1、修改/plus/Feedback_ajax.PHP文件的第131行(如果你没改过) @H_403_4@

下面是修改之前的代码: @H_403_4@

$qmsg = '{quote}{title}'.$row['username'].' 的原帖:{/title}{content}'.$row['msg'].'{/content}{/quote}';

下面是修改后的代码: @H_403_4@

代码如下: @H_403_4@

//$qmsg = '{quote}{title}'.$row['username'].' 的原帖:{/title}{content}'.$row['msg'].'{/content}{/quote}';
$floors = substr_count($row['msg'],'{title}');//查找评论中楼层数
if ($floors > 0) {
$floors += 1;
$floor_html = '{floor}' . $floors . '{/floor}';
}
else {
$floor_html = '{floor}1{/floor}';
}
$quotetitle = '{title}引用' . $row['username'] . '的评论'. $floor_html .'{/title}';
$oldquote = '';//以前的引用
$quotemsg = $row['msg'];
if ($floors > 0) {
$oldquoteend = strrpos($quotemsg,'{/quote}') + 8;
$oldquote = substr($quotemsg,$oldquoteend);
$quotemsg = substr($quotemsg,$oldquoteend);
}
$qmsg = '{quote}' . $oldquote . $quotetitle . '{content}' . $quotemsg . '{/content}{/quote}';

2、在/include/channelunit.func.PHP文件的516行,就是在return $quote;代码前插入两行代码 @H_403_4@

下面是修改之前的代码: @H_403_4@

return $quote;

下面是修改之后的代码: @H_403_4@

代码如下: @H_403_4@

$quote = str_replace('{floor}','<span class="floor">',$quote);
$quote = str_replace('{/floor}','</span>',$quote);
return $quote;

3、在/templets/style/Dedecms.css文件末尾加入下面的CSS代码(任意位置均可) @H_403_4@

代码如下: @H_403_4@

.floor {
float:right;
padding-right:10px;
}

4、PHP技术有限,有更好的实现方法请指正,经以上修改失败请回帖,修改成功后记得顶个贴^_^ @H_403_4@

二、5.6版本 @H_403_4@

1、修改/templets/plus/Feedback_quote.htm文件的第94行(如果你没改过) @H_403_4@

下面是修改之前的代码: @H_403_4@

代码如下: @H_403_4@

<input type="hidden" name="quotemsg" value="{quote}<?PHP echo '{title}'.$row['username'].' 的原帖:{/title}{content}'.$row['msg'].'{/content}'; ?>{/quote}" />

下面是修改后的代码: @H_403_4@

代码如下: @H_403_4@

<input type="hidden" name="quotemsg" value="<?PHP
//echo '{quote}{title}'.$row['username'].' 的原帖:{/title}{content}'.$row['msg'].'{/content}{/quote}';
floors = substr_count($row['msg'],'{title}');//计算评论中楼层数
if ($floors > 0) {
$floors += 1;
$floor_html = '{floor}' . $floors . '{/floor}';
}
else {
$floor_html = '{floor}1{/floor}';
}
$quotetitle = '{title}' . $row['username'] . '的原帖'. $floor_html .'{/title}';
$oldquote = '';//以前的引用
$quotemsg = $row['msg'];
if ($floors > 0) {
$oldquoteend = strrpos($quotemsg,$oldquoteend);
}
echo '{quote}' . $oldquote . $quotetitle . '{content}' . $quotemsg . '{/content}{/quote}';
?>" />

2、在/include/channelunit.func.PHP文件的519行,就是在return $quote;代码前插入两行代码 @H_403_4@

下面是修改之前的代码: @H_403_4@

return $quote;

下面是修改之后的代码: @H_403_4@

代码如下: @H_403_4@

$quote = str_replace('{floor}',$quote);
return $quote;

3、修改/templets/default/style/page.css文件的第1169行 @H_403_4@

下面是修改之前的代码: @H_403_4@

代码如下: @H_403_4@

.decmt-content .decmt-Box,.dede_comment .decmt-Box .decmt-Box {
background:#FFE;
border:1px solid #CCC;
margin:6px auto;
}

下面是修改之后的代码: @H_403_4@

代码如下: @H_403_4@

/* .decmt-content .decmt-Box,.dede_comment */.decmt-Box .decmt-Box {
background:#FFE;
border:1px solid #CCC;
margin:6px auto;
}
.floor{
float:right;
padding-right:10px;
}
.decmt-title{
margin-bottom:5px;
}

以上就是Dedecms怎么实现楼层数的详细内容,更多请关注编程之家其它相关文章! @H_403_4@ 原文链接:https://www.f2er.com/dedecms/534200.html

猜你在找的Dedecms相关文章