묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시판EX에서 비회원이 글,댓글쓸때 이메일,홈페이지 폼 없애기
2011.07.29 21:20
게시판EX쓰고있는데요
비회원이 글,댓글 쓸때 이메일,홈페이지 폼 삭제하는방법...
아시는분 댓글좀부탁해요....^^;;
비회원이 글,댓글 쓸때 이메일,홈페이지 폼 삭제하는방법...
아시는분 댓글좀부탁해요....^^;;
댓글 2
-
송동우
2011.07.30 00:01
-
나르니즘
2011.12.03 17:23
저는 PXE보드 사용중인데 위에 송동우님 말씀대로 했더니 '글쓰기'에서는 이메일, 홈페이지 form이 삭제가 되는데 댓글에서는 안되더라구요. 댓글의 경우에는 PXE보드의 경우에 view_document.html 에서
<div class="editorOption">
<!--@if(!$is_logged)-->
<input type="text" name="nick_name" class="inputText userName" value="{$lang->writer}" title="{$lang->writer}" onfocus="if(this.value==this.title)this.value='';return false;" />
<input type="password" name="password" class="inputText userPw" value="{$lang->password}" title="{$lang->password}" onfocus="if(this.value==this.title)this.value='';return false;" />
<!--@end-->
이렇게 해주면 됩니다.
글쓰기에서 삭제
xe - modules - bodex - skins - ex_default - write_form.html 열고
line 45 쯤에
<label for="emailAddress">{$lang->email_address}</label>
<input type="text" name="email_address" value="{htmlspecialchars($oDocument->email_address)}" id="emailAddress" class="emailAddress exISt"/>
<label for="homePage">{$lang->homepage}</label>
<input type="text" name="homepage" value="{htmlspecialchars($oDocument->homepage)}" id="homePage" class="homePage exISt"/>
이 부분 삭제
답글에서 삭제
xe - modules - bodex - skins - ex_default - comment_form.html 열고
line 96 쯤에
<dd><label for="emailAddress">{$lang->email_address}</label>
<input class="emailAddress exISt" type="text" name="email_address" value="{$oComment->email_address}" id="emailAddress"/></dd>
<dd><label for="homePage">{$lang->homepage}</label>
<input class="homePage exISt" type="text" name="homepage" value="{$oComment->homepage}" id="homePage"/></dd>
이 부분 삭제....