묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
송동우님 너무 감사드려요~ 한가지만 더 부탁드려도 될까요?
2011.08.29 09:50
댓글이 달렸을때 댓글갯수 색깔변경하기를 질문 드렸었는데
송동우님께서 답변 해주신대로 하니 너무나 잘되더군요
매번 친절히 답변해주셔서 너무 감사드려요~~~
게시판 말고 위젯에도 적용하려 해보았는데
불러오는 방식이 다른건지 되진 않네요
혹시 어느부분을 수정해야 하는지 알고 계시면 답변 부탁드릴께요
즐거운 주말 되세요~~~
content 확장 위젯 2 ver 2.41 > default 스킨을 사용중이며
적용하려는 부분 소스를 복사해왔어요 ^^
normal.html -------------------------------------------
<!--// 테이블형 출력 -->
<!--@else-->
<table class="widgetTableA" border="1" cellspacing="0">
<tbody>
{@$_idx=0}
<!--@foreach($widget_info->content_items as $key => $item)-->
<tr<!--@if($_idx >= $widget_info->list_count && $widget_info->show_always_new == 'N')--> style="display:none"<!--@end-->>
<!--@foreach($widget_info->option_view_arr as $k => $v)-->
<!--@if($v=='title')-->
<td class="title" height=20>
<!--@if($widget_info->show_browser_title=='Y' && $item->getBrowserTitle())-->
<a href="<!--@if($item->contents_link)-->{$item->contents_link}<!--@else-->{getSiteUrl($item->domain, '', 'mid', $item->get('mid'))}<!--@end-->"><font color="#18609C">{$item->getBrowserTitle()}</font></a>
<!--@end-->
<!--@if($widget_info->show_content_title=='Y' && $item->getDocumentTitle())-->
<a href="{$item->getDocumentURL()}"><font color="#18609C">{$item->getDocumentTitle()}</font></a>
<!--@end-->
<!--@if($widget_info->show_category=='Y' && $item->get('category_srl') )-->
<a href="{getSiteUrl($item->domain,'','mid',$item->get('mid'),'category',$item->get('category_srl'))}"><strong class="category">{$item->getCategory()}</strong></a>
<!--@end-->
{@
$oDB = &DB::getInstance();
$query = $oDB->_query('select regdate from xe_comments where document_srl = '.$document->document_srl.' order by list_order limit 1');
$result = $oDB->_fetch($query);
$limit = date("YmdHis", strtotime("+24 hours", strtotime($result->regdate)));
}
<a href="{$item->getLink()}" style="text-decoration:none;">{$item->getTitle($widget_info->subject_cut_size)}</a><!--@if($widget_info->show_comment_count=='Y' && $item->getCommentCount())-->
<a href="{$item->getLink()}#comment" style="text-decoration:none;"><!-- <img src="comment.gif" hSPACE=2 > -->
<!--@ if(date("YmdHis")>$limit)-->
<font class=com_num color=gray>{$item->getCommentCount()}</font>
<!--@else-->
<font class=com_num color=#ff0066 >{$item->getCommentCount()}</font>
<!--@ end-->
</a>
<!--@end-->
xe - widgets - contentextended - skins - default - normal.html 열고
line 95 쯤에
<sup class="replyNum" title="Replies"><a href="{$item->getLink()}#comment">{$item->getCommentCount()}</a></sup>
이것을
{@
$oDB = &DB::getInstance();
$query = $oDB->_query('select regdate from xe_comments where document_srl = '.$item->variables[document_srl].' order by list_order limit 1');
$result = $oDB->_fetch($query);
$limit = date("YmdHis", strtotime("+6 hours", strtotime($result->regdate)));
}
<sup class="replyNum" title="Replies"><a href="{$item->getLink()}#comment" <!--@ if(date("YmdHis")<$limit)--> style="color:색깔"<!--@ end-->>{$item->getCommentCount()}</a></sup>
이것으로 변경
붉은 색 색깔은 원하는 색으로 변경