本文講述了destoon實(shí)現(xiàn)公司新聞詳細(xì)頁(yè)添加評(píng)論功能的方法,具體步驟如下:
首先找到相應(yīng)的頁(yè)面:
template\default\homepage\new.htm
在對(duì)應(yīng)的地方添加如下代碼:
1
2
3
4
5
6
|
{ if $could_comment && in_array( $moduleid , explode ( ',' , $EXT [ 'comment_module' ]))} <div id= "comment_div" style= "display:;" > <div class = "main_head" ><div><span class = "f_r px12" >共<span id= "comment_count" >0</span>條 </span><strong><span id= "message_title" >相關(guān)評(píng)論</span></strong></div></div> <div class = "main_body" ><script type= "text/javascript" >Df( '{$MODULE[3][linkurl]}comment.php?mid={$moduleid}&itemid={$itemid}' , 'id="destoon_comment" style="width:100%;"' );</script></div> </div> {/ if } |
上述代碼實(shí)際上是template\default\homepage\introduce.htm這個(gè)頁(yè)面大約104行左右開(kāi)始的一段評(píng)論代碼,直接拿過(guò)來(lái),再根據(jù)需要進(jìn)行修改一下就可以使用了。
這里所做的修改是把itemid={$COM[userid]} 改成了itemid={$itemid},也就是文章的id.