웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
비밀글 이여도 갤러리나 웹진형에서, 썸네일이나 요약 부분이 나타나게 수정하려면..
2015.12.23 10:09
원본글 출처 : http://sejin7940.co.kr/index.php?mid=xe_tips&document_srl=106334
퍼온글이여서 말이 조금 짧습니다 ^^;
------------------------------------------------------------
비밀글인 경우에는, 갤러리형이나 웹진형일 경우에 썸네일도 노출이 안 되는게 사실은 정상적이다
1) 그런데 이를 고쳐서, 제목 및 내용은 안 나오더라도
썸네일은 노출이 되도록 변경을 하고 싶으면..
modules/document/document.item.php 에서
function getThumbnail 함수에서
if($this->isSecret() && !$this->isGranted())
{
return;
}
부분을 제거하면 된다.
2) 웹진형의 경우, 목록에서 요약부분이 안 나타나는데..
비밀글이여도 요약부분은 나타나게 하고 싶은 경우라면..
modules/document/document.item.php 에서
function getContent 함수에서
if($this->isSecret() && !$this->isGranted() && !$this->isAccessible()) return Context::getLang('msg_is_secret');
부분을 제거하면 된다.