묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
xe 기본 모바일 스킨에서 댓글페이지를 1페이지 부터 보여주려면
2014.04.04 15:20
현재 모바일에서 보면 댓글의 마지막 페이지부터 보여주는데요
5페이지가 있다고 가정하면
1/5페이지부터 처음에 보이도록 하고싶은데
어느부분을 고쳐야 하는건가요?
제가 찾은곳은
document.item.php의 getComments() 함수인데요
// cpage is a number of comment pages
$cpageStr = sprintf('%d_cpage', $this->document_srl);
$cpage = Context::get($cpageStr);
if(!$cpage)
{
$cpage = Context::get('cpage');
}
이부분에서 파란색 코드가 실행되는거 같은데
처음으로 댓글을 불러오는 과정에서
위 파란줄의 get을 하기전에 Context::set('cpage',???); 이부분은 어디에 선언되어 있는건지 잘 모르겠습니다;
자문 자답입니다;
XE 게시판 모바일 default 스킨에서 read.html 파일에 맨 아래에
$('.tgr').click(function(){
if(!loaded) {
loaded = true;
{@ $lastpage = 1; }
{@ $temp = $oDocument->getComments() }
<!--@if($oDocument->comment_page_navigation)-->
{@ $lastpage = $oDocument->comment_page_navigation->last_page }
<!--@endif-->
loadPage({$oDocument->document_srl}, {$lastpage});
}
});
보라색 부분을
loadPage({$oDocument->document_srl}, 1);
이렇게 1로 바꿔주시면 됩니다!