게시판 목록에서 답글이 보이는 형식을 변경하고싶습니다.

1. 정확한 제품 또는 플러그인 이름

KBoard : 게시판 default 스킨

 

2. 상세 내용

안녕하세요
kboard-list에서 kboard-list-title이 보이는 형식을 
[$content->category1]$content->title 에서 $content->category1로 변경하기 위해
list.php 파일에서

<td class="kboard-list-uid"><?php echo $list->index()?></td>
<td class="kboard-list-title">
 <a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>">
  <div class="kboard-default-cut-strings">
   <?php if($content->isNew()):?><span class="kboard-default-new-notify">New</span><?php endif?>
   <?php if($content->secret):?><img src="<?php echo $skin_path?>/images/icon-lock.png" alt="<?php echo __('Secret', 'kboard')?>"><?php endif?>
   <?php if($content->category1):?>[<?php echo $content->category1?>]<?php endif?><?php echo $content->title?>

위의 코드를

<td class="kboard-list-uid"><?php echo $list->index()?></td>
<td class="kboard-list-title">
 <a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>">
  <div class="kboard-default-cut-strings">
   <?php if($content->isNew()):?><span class="kboard-default-new-notify">New</span><?php endif?>
   <?php if($content->secret):?><img src="<?php echo $skin_path?>/images/icon-lock.png" alt="<?php echo __('Secret', 'kboard')?>"><?php endif?>
   <?php if($content->category1):?><?php echo $content->category1?><?php endif?>

위와 같이 수정하였습니다.

그랬더니 일반 게시글 제목은 의도한대로 $content->category1만 보이는데
답글은 여전히 Re:$content->title 형식으로 보입니다.
답글 제목도 $content->category1 또는 Re:$content->category1 형식으로 보이게 하려면 어떻게 수정해야 하는지 알 수 있을까요?

 

4. 수정한 코드 내역 (있다면)

<td class="kboard-list-uid"><?php echo $list->index()?></td>의
<?php if($content->category1):?>[<?php echo $content->category1?>]<?php endif?><?php echo $content->title?> 코드를
<?php if($content->category1):?><?php echo $content->category1?><?php endif?> 로 수정

 

좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기