묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시글에 댓글이 없을때 리스트에 이미지를 나오게하고싶습니다.
2014.10.24 16:32
게시글에 댓글이 없을때 이미지가 나오고
댓글이 달리면 이미지가 나오게 만들려고 합니다.
댓글이 달리면 이미지가 나오게는 되는데 안달렸을때의 상황을 만들 수 가없네요....
<a cond="$document->getCommentCount()" class="replyNum" title="Replies" style="float:right"><img src="a_select.gif" /></a>
댓글달리면 나오는 이미지는 위와같이 만들어 놓은 상태입니다.
<!--@if($document->getCommentCount()=='0')-->
<p>test</p>
<!--@end-->
로 시도해보세요
아니면 0을 Null로
또는 !$document->getCommentCount()
<a cond="!$document->getCommentCount()" class="replyNum" title="Replies" style="float:right"><img src="a_select.gif" /></a>
<a cond="$document->getCommentCount()=='0'" class="replyNum" title="Replies" style="float:right"><img src="a_select.gif" /></a>