首頁 > CMS教程 > DEDECMS > 主體

dedecms怎麼實現樓層數

藏色散人
發布: 2019-11-19 11:34:33
原創
1899 人瀏覽過

dedecms怎麼實現樓層數

dedecms怎麼實作樓層數?

DEDE評論效果:

推薦:《dedecms教學

dedecms怎麼實現樓層數

修改後的效果:

dedecms怎麼實現樓層數

修改步驟

一、5.5版本(5.6版請往下看)

#1、修改/plus /feedback_ajax.php檔案的第131行(如果你沒改過)

下面是修改之前的程式碼:

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

下面是修改後的程式碼:

#程式碼如下:

//$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, 0, $oldquoteend);
$quotemsg = substr($quotemsg, $oldquoteend);
}
$qmsg = '{quote}' . $oldquote . $quotetitle . '{content}' . $quotemsg . '{/content}{/quote}';
登入後複製

2、在/include/channelunit.func.php檔案的516行,就是在return $quote;程式碼前插入兩行程式碼

下面是修改之前的程式碼:

return $quote;
登入後複製
登入後複製

下面是修改之後的程式碼:

程式碼如下:

$quote = str_replace(&#39;{floor}&#39;,&#39;<span class="floor">&#39;,$quote);
$quote = str_replace(&#39;{/floor}&#39;,&#39;</span>&#39;,$quote);
return $quote;
登入後複製
登入後複製

3、在/templets/style/dedecms.css檔案結尾加入下面的CSS程式碼(任意位置均可)

代碼如下:

.floor {
float:right;
padding-right:10px;
}
登入後複製

4、PHP技術有限,有更好的實現方法請指正,經以上修改失敗請回帖,修改成功後記得頂個貼^_ ^

二、5.6版本

1、修改/templets/plus/feedback_quote.htm檔案的第94行(如果你沒改過)

下面是修改之前的程式碼:

程式碼如下:

<input type="hidden" name="quotemsg" value="{quote}<?php echo &#39;{title}&#39;.$row[&#39;username&#39;].&#39; 的原帖:{/title}{content}&#39;.$row[&#39;msg&#39;].&#39;{/content}&#39;; ?>{/quote}" />
登入後複製

下面是修改後的程式碼:

程式碼如下:

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

2、在/include/channelunit.func .php檔案的519行,就是在return $quote;程式碼前插入兩行程式碼

下面是修改之前的程式碼:

return $quote;
登入後複製
登入後複製

下面是修改之後的程式碼:

程式碼如下:

$quote = str_replace(&#39;{floor}&#39;,&#39;<span class="floor">&#39;,$quote);
$quote = str_replace(&#39;{/floor}&#39;,&#39;</span>&#39;,$quote);
return $quote;
登入後複製
登入後複製

3、修改/templets/default/style/page.css檔案的第1169行

下面是修改之前的程式碼:

##程式碼如下:

.decmt-content .decmt-box,.dede_comment .decmt-box .decmt-box {
background:#FFE;
border:1px solid #CCC;
margin:6px auto;
}
登入後複製

下面是修改之後的程式碼:

程式碼如下:

/* .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怎麼實現樓層數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!