라이믹스가 2.0 으로 버전업 되면서 새로 생긴 기능중에 "통합 게시판"설정이 추가 되었습니다.

게시글들을 모아서 출력해주는 "타임라인 모듈"과 비슷한 기능입니다.
그런데 여기서도 게시판명이 출력 되지 않습니다.
타임라인 모듈의 경우는 "타임라인모듈 사용시 게시판명 나오게 수정하기" 에 팁이 있습니다.
[라이믹스 자체적인 통합게시판에 게시판명 나오게 하는 방법]
이 방법도 모듈을 수정하는 것이 아니라 통합게시판으로 사용할 게시판의 스킨을 수정해 주어야 합니다.
게시판스킨은 sketchbook5스킨의 목록형입니다.
이런 경우는 modules/board/skins/sketchbook5/_list_normal.html 을 아래와 같이 수정해 주시면 됩니다.
테이블 헤더에서 아래내용을 찾아 빨간부분 추가
<block cond="$val->type=='title' && $val->idx==-1">
<th scope="col" cond="$timeline_info"><span>{$lang->board}</span></th>
<th scope="col" cond="$module_info->include_modules"><span>{$lang->board}</span></th>
<th scope="col" cond="!$mi->show_cate && $mi->use_category=='Y'" class="m_no"><span>{$lang->category}</span></th>
<th scope="col" class="title"><span><a href="{getUrl('sort_index','title','order_type',$order_type)}"><!--@if(!$mi->link_board)-->{$lang->title}<!--@else-->{$lang->link_site}<!--@end--><i cond="$sort_index=='title'" class="arrow {$order_icon}"></i></a></span></th>
</block>
공지목록과 일반목록에서 아래내용을 찾아 빨간부분 추가
<block cond="$val->type=='title' && $val->idx==-1">
<td class="mid" cond="$timeline_info"><a href="{getUrl('module_srl', $document->get('module_srl'))}"><strong>{htmlspecialchars($modules_info[$document->get('module_srl')]->browser_title)}</strong></a></td>
<td cond="$module_info->include_modules"><td cond="$module_info->include_modules"><a href="{$document->get('mid')}"><strong>{$document->get('module_title')}</strong></a></td></td>
<td cond="!$mi->show_cate && $mi->use_category=='Y'" class="cate" style="color:{$category_list[$document->get('category_srl')]->color}"|cond="$category_list[$document->get('category_srl')]->color!='transparent'"><strong>{$category_list[$document->get('category_srl')]->title}</strong></td>
<td class="title">
~~ 내용 생략 ~~
</td>
</block>
간단히 설명하자면
cond="$module_info->include_modules" 이 부분이 통합게시판 기능을 사용하면
{$document->get('module_title')} 게시판명을 출력 하라는 뜻입니다.

Tip이 도움이 되었다면 댓글과 평가 부탁합니다.
Tip에 대한 궁금한 점은 댓글로 남겨 주시면 성심껏 답변 드립니다.


통합게시판에서 글을 클릭하면 해당 게시판으로 이동 되지 않네요.
원래 없는 기능인가요?