phpcms中自帶的評論插件很好用!但是樣式個人感覺丑的狠,百度一下也沒能找到解決方式,也許是自己的搜索方式不對,於是自己就研究了研究,這裡可以使用兩種方法進行修改
方法一:
使用PHPCMS中的get方法進行獲取數據
//拼接評論表的commentid字段值 {php $commentid = 'content_'.$catid.'-'.$id.'-'.$modelid;} //查詢獲取數據 {pc:get sql="SELECT * FROM v9_comment_data_1 where commentid = '$commentid'" cache="0" return="data"} //循環輸出 {loop $data $key $val} <li class="list-group-item"> <div class="media"> <a class="media-left" href="#"> <img src="{IMG_PATH}tou.png" class="img-circle" alt="..."> </a> <div class="media-body"> <h5 class="media-heading">{$val[username]}</h5> <span >{$val[content]}</span> </div> </div> </li> {/loop} {/pc}
方法二:
除了使用get方法進行獲取數據之外還有一種最簡單的方式,找到 /phpcms/templates/default/comment/show_list.html 找到如下代碼,進行樣式的修改即可
{pc:comment action="lists" commentid="$commentid" siteid="$siteid" page="$_GET['page']" hot="$hot" num="20"} {if !empty($data)} <div class="comment_button"><a href="{APP_PATH}index.php?m=comment&c=index&a=init&commentid={$commentid}&title={urlencode(($comment[title] ? $comment[title] : $title))}&url={urlencode(($comment[url] ? $comment[url] : $url))}&hot=0&iframe=1"{if empty($hot)} class="on"{/if}>最新</a> <a href="{APP_PATH}index.php?m=comment&c=index&a=init&commentid={$commentid}&title={urlencode(($comment[title] ? $comment[title] : $title))}&url={urlencode(($comment[url] ? $comment[url] : $url))}&hot=1&iframe=1"{if $hot} class="on"{/if}>最熱</a></div> <div class="comment"> {loop $data $r} <h5 class="title fn">{direction($r[direction])} <font color="#FF0000">{format::date($r[creat_at], 1)}</font> {if $r[userid]}{get_nickname($r[userid])}{else}{$r[username]}{/if} </h5> <div class="content">{$r[content]} <div class="rt"><a href="javascript:void(0)" onclick="reply({$r[id]}, '{$commentid}')">回復</a> <a href="javascript:void(0)" onclick="support({$r[id]}, '{$commentid}')">支持</a>(<font id="support_{$r[id]}">{$r[support]}</font>) </div> <div id="reply_{$r[id]}" ></div> </div> <div class="bk30 hr mb8"></div> {/loop} </div> <div id="pages" class="text-r">{$pages}</div> {/if} {/pc}
以上所述是小編給大家介紹的phpcms中的評論樣式修改方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對幫客之家網站的支持!