RadarURL
웹 프로그래밍

[제로보드XE] 목록에서 업데이트 된 글의 댓글수 bold표시하기

by YooN posted May 02, 2010
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

가 크게 작게 위로 아래로 댓글로 가기 인쇄

목록에서 업데이트된 글에 이미 기본적으로 new, update 아이콘들이 나타나는데요, 여기다가 댓글수까지 bold로 표시하고 싶었습니다. 


 보드 스킨 style.list.html에서 댓글부분을 찾아 아래와 같이 코드를 넣습니다. 


                            <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
                           
                            <!--@if($document->getCommentCount())-->
                            {@ $time_check = date("YmdHis", time()-(180*60*$module_info->duration_new));}
                <!--@if($document->get('last_update')>$time_check)-->
                                <span class="replyAndTrackback" title="Replies"><img src="/images/{$module_info->colorset}/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
                                    <!--@else-->
                                    <span class="replyAndTrackback" title="Replies"><font color=9999> {$document->getCommentCount()}</font></span>
               <!--@end-->
                            <!--@end-->



 보드 스킨 style.gallery.html에서 댓글부분을 찾아 아래와 같이 코드를 넣습니다. 


                        <!--@if($document->getCommentCount())-->
                            {@ $time_check = date("YmdHis", time()-(180*60*$module_info->duration_new));}
                <!--@if($document->get('last_update')>$time_check)-->
                            <span class="replyAndTrackback" title="Replies"><font color=#FF6542>(<strong>{$document->getCommentCount()}</strong>)</font></span>
                                <!--@else-->
                                <span class="replyAndTrackback" title="Replies">({$document->getCommentCount()})</span>
                           <!--@end-->
                        <!--@end-->



스킨을 변경하는 것이기에 코어 업데이트 해도 문제 없습니다.


감사합니다. 

출처 : http://www.xpressengine.com/?_filter=search&mid=tip&search_keyword=%EB%8C%93%EA%B8%80&search_target=title&page=1&division=-18865340&document_srl=18776079

출처에서 약간 바뀐것이 있어서 수정하였습니다.


Articles

1 2 3 4 5 6 7 8 9 10