묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시판 글 읽는 화면에서 댓글만 따로 뺄 수 있을까요.?
2011.10.06 01:13
안녕하세요. 기본 게시판에서
작성된 글을 읽을때 하단에 나오는 코멘트를 따로 빼길 원합니다.
본문페이지따로 코멘트페이지 따로 불러오게 하길 원합니다.
예를 들어 작성된 글을 읽을때 하단에는 댓글 내용이나 입력이 나오지 않고
댓글입력하기 라는 버튼을 눌렀을때 해당 글에 입력된 댓글을 보거나 입력할 수 있는 페이지를 열게 하고 싶습니다.
모바일에서 처럼 css를 이용해 히든 시키는 것이 아니라 페이지로 불러오고 싶습니다.
고수님들의 좋은 조언 부탁드립니다.
감사합니다.!
댓글입력하기 라는 버튼을 눌렀을때 해당 글에 입력된 댓글을 보거나 입력할 수 있는 페이지를 열게 하고 싶습니다.
이 부분의 의미가 조금 헷깔립니다
아무튼(xe_official게시판 스킨 기준)
xe - modules - board - skins - xe_official - comment.html 열고
최상단에
<button type="button" id="bt" onClick="document.getElementById('v_h').style.display=(document.getElementById('v_h').style.display=='none')?'block':'none'; document.getElementById('bt').innerHTML=(document.getElementById('v_h').style.display=='none')?'View comments':'Hide comments'" cond="$oDocument->getCommentCount()>0">View comments</button>
<div style="display:none" id="v_h">
이렇게 입력하고, 최하단에
</div>
이것 입력
xe - modules - board - skins - xe_official - view_document.html 열고
line 135 쯤에
<!--#include("./comment.html")-->
이것 바로 밑에
<button type="button" id="bt2" onClick="document.getElementById('v_h2').style.display=(document.getElementById('v_h2').style.display=='none')?'block':'none'; document.getElementById('bt2').innerHTML=(document.getElementById('v_h2').style.display=='none')?'View write':'Hide write'">View write</button>
<div style="display:none" id="v_h2">
최하단에
<!--@ end-->
<!--@ end-->
이것을
<!--@ end-->
</div>
<!--@ end-->
이것으로 수정
원하는 답이 아니면 그냥 무시하세요.....