묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
이미지 리스트 안보이게 하는 방법 없을까요?
2008.10.22 13:19
이미지 첨부하면 리스트들이 나오는데 이것이 안보이게 할 수 있는 옵션은 없나요?
댓글 2
-
백성찬
2008.10.22 13:37
-
老姜君
2008.10.22 13:45
옵션은 없고 방법은 있습니다.
modules\board\skins\xe_board\view_document.html 에서 다음 내용을 지워버리세요.
<!--@if($oDocument->hasUploadedFiles())-->
<div class="fileAttached">
{@ $uploaded_list = $oDocument->getUploadedFiles() }
<ul>
<!--@foreach($uploaded_list as $key => $file)-->
<li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
<!--@end-->
</ul>
<div class="clear"></div>
</div>
<!--@end-->
첨부파일이 보이지 않으면 다운로드는 어떻게 합니까?