묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
본문에 추천 비추천 버튼을 따로 빼내고 싶습니다.
2009.08.17 14:12
이번에 공개해주신 xe_official 공식 보드 사용중에 있습니다.
본문 읽을시에 이게시물을... 이부분을 누르면 나타나는 추천 비추천 등등의 메뉴를
본문 하단에도 출력되게 빼오고 싶습니다.
추천 비추천 버튼 노출 팁을 몇분께서 적어 놓아주시긴 했는데.,
이전버전 게시판을 위주로 설명해주신것들이라... 적용이 안되네요...
어느파일에 어느 부분 소스를 추가하면되는지 부탁드립니다. 절실합니다.
http://www.xpressengine.com/15979333 이 글을 참조하니 잘 적용됩니다.
modules/board/skins/xe_official/view_document.html 60줄에 빨간 부분 추가
<!--@else-->
{$oDocument->getContent()}
<!--@end-->
<!--추천-->
<a href="#" onclick="doCallModuleAction('document','+ 'procDocumentVoteUp','{$document_srl}');return false;" class="button"><span>{$menu_str = Context::getLang('cmd_vote')}</span></a>
<!--비추천-->
<a href="#" onclick="doCallModuleAction('document','procDocumentVoteDown','{$document_srl}');return false;" class="button"><span>{$menu_str = Context::getLang('cmd_vote_down')}</span></a>
<!--신고-->
<a href="#" onclick="doCallModuleAction('document','procDocumentDeclare','{$document_srl}');return false;" class="button"><span>{$menu_str = Context::getLang('cmd_declare')}</span></a>
<!--프린트-->
<a href="{getUrl('','act','dispDocumentPrint','document_srl',$oDocument->document_srl)}" onclick="winopen(this.href);return false;" class="button"><span>{$lang->cmd_print}</span></a>
<!--스크렙-->
<!--@if($is_logged)-->
<a href="#" onclick="doScrap({$oDocument->document_srl}); return false;" class="button"><span>{$lang->cmd_scrap}</span></a>
<!--@end-->