묻고답하기

 

1. 댓글 작성자들의 닉네임이 익명으로 표기되고 관리자만 닉네임을 볼 수 있게 수정할 수 있을까요?

 

해당 게시판 코멘트 소스는

<!-- COMMENT -->

<div class="feedback" id="comment">

<div class="fbHeader">

<h2><i class="xi-comment"></i> {$lang->comment} <em>{$oDocument->getCommentcount()}</em></h2>

</div>

<ul cond="$oDocument->getCommentcount()" class="fbList">

<li loop="$oDocument->getComments()=>$key,$comment" class="fbItem"|cond="!$comment->get('depth')" class="fbItem indent indent{($comment->get('depth'))}"|cond="$comment->get('depth')" id="comment_{$comment->comment_srl}">

<div class="fbMeta">

<img cond="$comment->getProfileImage()" src="{$comment->getProfileImage()}" alt="Profile" class="profile" />

<span cond="!$comment->getProfileImage()" class="profile"></span>

<h3 class="author">

<a cond="!$comment->member_srl && $comment->homepage" href="{$comment->getHomepageUrl()}">{$comment->getNickName()}</a>

<strong cond="!$comment->member_srl && !$comment->homepage">{$comment->getNickName()}</strong>

<a cond="$comment->member_srl" href="#popup_menu_area" class="member_{$comment->member_srl}" onclick="return false">{$comment->getNickName()}</a>

</h3>

<p class="time">{$comment->getRegdate('Y.m.d H:i')}</p>

</div>

<!--@if(!$comment->isAccessible())-->

<form action="./" method="get" class="xe_content secretForm" onsubmit="return procFilter(this, input_password)">

<p><label for="cpw_{$comment->comment_srl}">{$lang->msg_is_secret} {$lang->msg_input_password}</label></p>

<p><input type="password" name="password" id="cpw_{$comment->comment_srl}" class="iText" /><input type="submit" class="btn" value="{$lang->cmd_input}" /></p>

<input type="hidden" name="mid" value="{$mid}" />

<input type="hidden" name="page" value="{$page}" />

<input type="hidden" name="document_srl" value="{$comment->get('document_srl')}" />

<input type="hidden" name="comment_srl" value="{$comment->get('comment_srl')}" />

</form>

<!--@else-->

{$comment->getContent(false)}

<!--@end-->

<div cond="$comment->hasUploadedFiles()" class="fileList">

<button type="button" class="toggleFile" onclick="jQuery(this).next('ul.files').toggle();"><i class="xi-diskette"></i> {$lang->uploaded_file} [<strong>{$comment->get('uploaded_count')}</strong>]</button>

<ul class="files">

<li loop="$comment->getUploadedFiles()=>$key,$file"><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} <span class="fileSize">[File Size:{FileHandler::filesize($file->file_size)}/Download:{number_format($file->download_count)}]</span></a></li>

</ul>

</div>

<p class="action">

<span class="vote" cond="$comment->get('voted_count')!=0">{$lang->cmd_vote}:{$comment->get('voted_count')?$comment->get('voted_count'):0}</span>

<a cond="$oDocument->allowComment()" href="{getUrl('act','dispBoardReplyComment','comment_srl',$comment->comment_srl)}" class="reply"><i class="xi-reply"></i> {$lang->cmd_reply}</a>

<a cond="$comment->isGranted()||!$comment->get('member_srl')" href="{getUrl('act','dispBoardModifyComment','comment_srl',$comment->comment_srl)}" class="modify"><i class="xi-eraser"></i> {$lang->cmd_modify}</a>

<a cond="$comment->isGranted()||!$comment->get('member_srl')" href="{getUrl('act','dispBoardDeleteComment','comment_srl',$comment->comment_srl)}" class="delete"><i class="xi-trash"></i> {$lang->cmd_delete}</a>

<a cond="$is_logged" class="comment_{$comment->comment_srl} this" href="#popup_menu_area" onclick="return false">{$lang->cmd_comment_do}</a>

</p>

</li>

</ul>

    <div cond="$oDocument->comment_page_navigation" class="pagination">

        <a href="{getUrl('cpage',1)}#comment" class="direction prev"><span></span><span></span> {$lang->first_page}</a> 

        <block loop="$page_no=$oDocument->comment_page_navigation->getNextPage()">

<strong cond="$cpage==$page_no">{$page_no}</strong> 

<a cond="$cpage!=$page_no" href="{getUrl('cpage',$page_no)}#comment">{$page_no}</a>

        </block>

        <a href="{getUrl('cpage',$oDocument->comment_page_navigation->last_page)}#comment" class="direction next">{$lang->last_page} <span></span><span></span></a>

    </div>

<form cond="$grant->write_comment && $oDocument->isEnableComment()" action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="write_comment" id="write_comment">

<input type="hidden" name="mid" value="{$mid}" />

<input type="hidden" name="document_srl" value="{$oDocument->document_srl}" />

<input type="hidden" name="comment_srl" value="" />

        <input type="hidden" name="content" value="" />

        {$oDocument->getCommentEditor()}

        

<div class="write_author">

<span class="item" cond="!$is_logged">

<label for="userName" class="iLabel">{$lang->writer}</label>

<input type="text" name="nick_name" id="userName" class="iText userName" />

</span>

<span class="item" cond="!$is_logged">

<label for="userPw" class="iLabel">{$lang->password}</label>

<input type="password" name="password" id="userPw" class="iText userPw" />

</span>

<span class="item" cond="!$is_logged">

<label for="homePage" class="iLabel">{$lang->homepage}</label>

<input type="text" name="homepage" id="homePage" class="iText homePage" /> 

</span>

<input cond="$is_logged" type="checkbox" name="notify_message" value="Y" id="notify_message" class="iCheck" />

<label cond="$is_logged" for="notify_message">{$lang->notify}</label>

<input cond="$module_info->secret=='Y'" type="checkbox" name="is_secret" value="Y" id="is_secret" class="iCheck" />

<label cond="$module_info->secret=='Y'" for="is_secret">{$lang->secret}</label>

</div>

<div style="float:right">

<button type="submit" class="btn_insert"><i class="xi-message"></i> {$lang->cmd_comment_registration}</button>

</div>

</form>

</div>

<!-- /COMMENT -->

 
 
 
2. update.gif <- 요거 안 뜨게 하고 싶은데 어디를 수정해야 할까요ㅜ
 
 
며칠 헤매다 결국 글 올려요ㅠ 도움 부탁드려요ㅠ!!

 

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
백만장자 XE 로그인 문제 [2] 2018.02.08 by 멧 
절대권력 두 게시판 모듈 합칠때 sort해주는 기능 [4] 2018.02.08 by 절대권력
Sean19 댓글 회원정보에 [최초 가입일]정보를 표시하려합니다. 수정부탁드립니다. [6] file 2018.02.08 by Sean19
종합예술인 모바일에서 이미지 올리면 안되는 문제..! file  
멍멍 누리고 상품 썸네일가져오기문의입니다. file  
홈런볼11 추처인 나열 순서 [1] 2018.02.08 by sejin7940
경희 XE Session 및 Cache 삭제 하는 방법 아시는분~? [2] 2018.02.07 by 경희
절대권력 BJ람보님 랜덤게시글 모듈 에러관련 문의 [1] 2018.02.07 by 절대권력
멋진넘 다른 페이지 로그인 안되나요???  
장병훈 누리고 장바구니에서 결제하기 클릭시 http 500 에러 [1] 2018.02.07 by HowtoXE
JHYUN2 다국어 사용시 메뉴 노출 제어. [2] 2018.02.07 by JHYUN2
이와이 언어 설정마다 메뉴 지정하기 [1] 2018.02.06 by BRANDYK
이음 HTTP 500 내부 서버 오류  
이음 HTTP 500 내부 서버 오류 문의드립니다.  
절대권력 설치된 모듈 표시문제 관련 질문 [4] 2018.02.06 by 절대권력
이와이 사이트맵 메뉴 동적 노출  
다임 까페24를 이용하며, core를 최신버전으로 업데이트 원하는데... [3] 2018.02.06 by YJSoft
바보천사 XE 관리자 아이디와 비번 [1] 2018.02.06 by sejin7940
고니 amung us 이 방문자 카운터 위젯, 관리자만 보게 하는 소스 없나요?ㅠㅠ [1] 2018.02.06 by HowtoXE
Piche 원인불명 로그인풀림현상.. [1] 2018.02.06 by HowtoXE
절대권력 회원에게 쪽지보내기의 메일보내기 기능 문의 [2] 2018.02.05 by 절대권력
기억속으로 Facebook 픽셀 코드 소스 어디에 넣어야되나요?  
심현수 설치하고 보니 의문의 폴더들이 생겼습니다. [1] 2018.02.05 by Luatic™
킴오아 다른 사람의 글을 특정 그룹에 사용자들이 수정할 수 있는 권한을 부여 할 수 있나요?  
별이 XE 1.9.x 와 3 은 기반이 다른것인가요? 1.9.x 에서 3 으로 업데이트하는것은 아닌것이죠? [2] 2018.02.05 by 별이
토이터 컨텐츠위젯스킨에서 특수문자 표현 문제입니다. [3] 2018.02.05 by 엑설런트21
절대권력 회원가입이 있을때 관리자에게 알람이 오는 방법?  
lun**** conf 파일 라디오 버튼 디폴트 [2] 2018.02.03 by lun****
꾸링 20만명의 회원에게 전체메일링을 발송하고 싶습니다. [11] 2018.02.03 by 빠르고정확하게
브로콜링 Zend Optimizer not installed 발생문제 도와주세요