list.skin.php 에서 댓글표시 정보
list.skin.php 에서 댓글표시본문
안녕하세요 ?
게시판 리스트에서 댓글이 있을경우 (3) 이런식으로 나오는데 가로를 없애고 싶은데..
어디에서 수정해야 하나요 ㅠㅠ
게시판 리스트에서 댓글이 있을경우 (3) 이런식으로 나오는데 가로를 없애고 싶은데..
어디에서 수정해야 하나요 ㅠㅠ
댓글 전체
list_skin.php에서 변경하시는것이 아니라...
lib/common.lib.php파일에 보시면...
$list['comment_cnt'] = "";
if ($list['wr_comment'])
$list['comment_cnt'] = "($list[wr_comment])";
이 부분을 찾습니다.
$list['comment_cnt'] = "($list[wr_comment])"; 이부분에 보시면
"($list[wr_comment])"; 이부분에서 ()을 지워주시면 됩니다."$list[wr_comment]"; 이런식으로...
그럼
lib/common.lib.php파일에 보시면...
$list['comment_cnt'] = "";
if ($list['wr_comment'])
$list['comment_cnt'] = "($list[wr_comment])";
이 부분을 찾습니다.
$list['comment_cnt'] = "($list[wr_comment])"; 이부분에 보시면
"($list[wr_comment])"; 이부분에서 ()을 지워주시면 됩니다."$list[wr_comment]"; 이런식으로...
그럼
답변 감사합니다~~~^-^
감사합니다.