KBoard 에스크원 상담 스킨을 구매하였습니다.
홈페이지 메인화면에 '최신글' 로 게시판을 달았는데 (답변대기) 상태표시가 되지않습니다.
상태표시가 보이도록 '최신글' 뷰를 수정하는 방법이 있을까요?
안녕하세요~^^
FTP 접속해서 파일을 수정해주셔야 합니다.
/wp-content/plugins/kboard/skin/ask-one/latest.php 파일이 최신글 파일입니다.
아래 코드에서 굵게 표시된 코드를 새로 추가해서 확인해보시겠어요?
<tr>
<td class="kboard-latest-title">
<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>">
<div class="kboard-ask-one-cut-strings">
<?php if($content->category2 == '답변대기'):?><span class="kboard-ask-one-status-wait" style="padding:1px;font-size:12px;">답변대기</span><?php endif?>
<?php if($content->category2 == '답변완료'):?><span class="kboard-ask-one-status-complete" style="padding:1px;font-size:12px;">답변완료</span><?php endif?>
<?php if($content->isNew()):?><span class="kboard-ask-one-new-notify">N</span><?php endif?>
<?php if($content->secret):?><img src="<?php echo $skin_path?>/images/icon-lock.png" class="kboard-icon-lock" alt="<?php echo __('Secret', 'kboard')?>"><?php endif?>
<?php echo $content->title?>
<span class="kboard-comments-count"><?php echo $content->getCommentsCount()?></span>
</div>
</a>
</td>
<td class="kboard-latest-date"><?php echo $content->getDate()?></td>
</tr>
고맙습니다.
답변 너무 감사합니다,
그런데 이렇게 할경우 답변대기 아이콘이 제목 앞쪽으로 가는데
날짜 앞쪽이나 뒷쪽으로 붙어서 나열되게 할 방법이 있을까요? (text-align) 으로는 쉽지 않네요 ㅠㅠ
그럼 아래처럼 테이블 컬럼을 새로 추가해보시겠어요?
<div id="kboard-ask-one-latest">
<table>
<thead>
<tr>
<th class="kboard-latest-title"><?php echo __('Title', 'kboard')?></th>
<th class="kboard-latest-date"><?php echo __('Date', 'kboard')?></th>
<td class="kboard-latest-status"><?php echo __('Status', 'kboard')?></td>
</tr>
</thead>
<tbody>
<?php while($content = $list->hasNext()):?>
<tr>
<td class="kboard-latest-title">
<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>">
<div class="kboard-ask-one-cut-strings">
<?php if($content->isNew()):?><span class="kboard-ask-one-new-notify">N</span><?php endif?>
<?php if($content->secret):?><img src="<?php echo $skin_path?>/images/icon-lock.png" class="kboard-icon-lock" alt="<?php echo __('Secret', 'kboard')?>"><?php endif?>
<?php echo $content->title?>
<span class="kboard-comments-count"><?php echo $content->getCommentsCount()?></span>
</div>
</a>
</td>
<td class="kboard-latest-date"><?php echo $content->getDate()?></td>
</tr>
<td class="kboard-latest-status">
<?php if($content->category2 == '답변대기'):?><span class="kboard-ask-one-status-wait" style="padding:1px;font-size:12px;">답변대기</span><?php endif?>
<?php if($content->category2 == '답변완료'):?><span class="kboard-ask-one-status-complete" style="padding:1px;font-size:12px;">답변완료</span><?php endif?>
</td>
<?php endwhile?>
</tbody>
</table>
</div>