웹마스터 팁

적용하시기전에 아래의 링크를 반드시 참고 하세요.

http://www.zeroboard.com/16531452


1. zbxe/moudles/member/skins/deafult/filter/sinup.xml

line 20 아래에 다음의 소스를 삽입한다.
<param name="allow_email" target="allow_email" />
  <param name="allow_blog" target="allow_blog" />
  <param name="allow_homepage" target="allow_homepage" />
  <param name="allow_birthday" target="allow_birthday" />

2. zbxe/moudles/member/skins/deafult/filter/modify_info.xml

line 15 아래에 다음의 소스를 삽입한다.
<param name="allow_email" target="allow_email" />
  <param name="allow_blog" target="allow_blog" />
  <param name="allow_homepage" target="allow_homepage" />
  <param name="allow_birthday" target="allow_birthday" />

3. zbxe/moudles/member/skins/deafult/sinup_form.html

line line56 부근에          부분을 삽입한다.(추가된 부분 : 붉은 색의 코드를 추가한다)
<tr>
        <th scope="row">{$lang->email_address} *</th>
        <td>
            <input type="text" name="email_address" value="" />
<!--@if($member_config->email_policy!='N')-->
<input type="hidden" name="allow_email" value="Y" checked="checked" />
   <
!--@else-->
<input type="checkbox" name="allow_email" value="Y" checked="checked" />{$lang->public}
<!--@end-->
            <p>{$lang->about_email_address}</p>
        </td>
    </tr>
    <tr>
        <th scope="row">{$lang->homepage}</th>
        <td>
            <input type="text" name="homepage" value="" />
<!--@if($member_config->homepage_policy!='N')-->
   <input type="hidden" name="allow_homepage" value="Y" checked="checked" />
   <
!--@else-->
<input type="checkbox" name="allow_homepage" value="Y" checked="checked" />{$lang->public}
<!--@end-->
            <p>{$lang->about_homepage}</p>
        </td>
    </tr>
    <tr>
        <th scope="row">{$lang->blog}</th>
        <td>
            <input type="text" name="blog" value="" />
<!--@if($member_config->blog_policy!='N')-->
   <input type="hidden" name="allow_blog" value="Y" checked="checked" />
   <
!--@else-->
<input type="checkbox" name="allow_blog" value="Y" checked="checked" />{$lang->public} 
<!--@end-->
            <p>{$lang->about_blog_url}</p>
        </td>
    </tr>
    <tr>
        <th scope="row">{$lang->birthday}</th>
        <td>
            <input type="hidden" name="birthday" id="date_birthday" value="" />
            <div class="str_birthday" id="str_birthday" onclick="open_calendar('birthday','');return false;">&nbsp;</div>
            <a href="#" onclick="open_calendar('birthday','');return false;" class="button"><span>{$lang->cmd_open_calendar}</span></a>
<!--@if($member_config->birthday_policy!='N')-->
   <input type="hidden" name="allow_birthday" value="Y" checked="checked" />
   <
!--@else-->
<input type="checkbox" name="allow_birthday" value="Y" checked="checked" />{$lang->public}
<!--@end-->
            <p>{$lang->about_birthday}</p>
        </td>
    </tr>
 

4. zbxe/moudles/member/skins/deafult/modify_info.html

line44 부근에          부분을 삽입한다.(추가된 부분 : 붉은 색의 코드를 추가한다)
<tr>
        <th scope="row">{$lang->email_address}</th>
        <td><input type="text" name="email_address" value="{htmlspecialchars($member_info->email_address)}" />
<!--@if($member_config->email_policy!='N')-->
  <input type="hidden" name="allow_email" value="Y" class="checkbox" <
!--@if($member_info->allow_email!='N')-->checked="checked"<!--@end--> />
  <
!--@else-->
<input type="checkbox" name="allow_email" value="Y" class="checkbox" <
!--@if($member_info->allow_email!='N')-->checked="checked"<!--@end--> />{$lang->public}
<!--@end-->
<p>{$lang->about_email_address}</p></td>
    </tr>

line 109 부근에          부분을 삽입한다.(추가된 부분 : 붉은 색의 코드를 추가한다)
<tr>
        <th scope="row">{$lang->homepage}</th>
        <td><input type="text" name="homepage" value="{htmlspecialchars($member_info->homepage)}" />
<!--@if($member_config->homepage_policy!='N')-->
        <input type="hidden" name="allow_homepage" value="Y" class="checkbox" <
!--@if($member_info->allow_homepage!='N')-->checked="checked"<!--@end--> />
  <
!--@else-->
<input type="checkbox" name="allow_homepage" value="Y"class="checkbox" <
!--@if($member_info->allow_homepage!='N')-->checked="checked"<!--@end--> />{$lang->public}<!--@end--> <p>{$lang->about_homepage}</p></td>
    </tr>
    <tr>
        <th scope="row">{$lang->blog}</th>
        <td><input type="text" name="blog" value="{htmlspecialchars($member_info->blog)}" />
<!--@if($member_config->blog_policy!='N')-->
  <input type="hidden" name="allow_blog" value="Y" class="checkbox" <
!--@if($member_info->allow_blog!='N')-->checked="checked"<!--@end--> />
  <
!--@else-->
<input type="checkbox" name="allow_blog" value="Y" class="checkbox" <
!--@if($member_info->allow_blog!='N')-->checked="checked"<!--@end--> />{$lang->public}<!--@end--><p>{$lang->about_blog_url}</p></td>
    </tr>
    <tr>
        <th scope="row">{$lang->birthday}</th>
        <td>
            <input type="hidden" name="birthday" id="date_birthday" value="{$member_info->birthday}" />
            <div class="str_birthday" id="str_birthday" onclick="open_calendar('birthday','');return false;">{zdate($member_info->birthday,"Y-m-d")}</div>
            <a href="#" onclick="open_calendar('birthday','{$member_info->birthday}');return false;" class="button"><span>{$lang->cmd_open_calendar}</span></a>
<!--@if($member_config->birthday_policy!='N')-->
   <input type="hidden" name="allow_birthday" value="Y" class="checkbox"<
!--@if($member_info->allow_birthday!='N')-->checked="checked"<!--@end--> />
  <
!--@else-->
<input type="checkbox" name="allow_birthday" value="Y" class="checkbox" <
!--@if($member_info->allow_birthday!='N')-->checked="checked"<!--@end--> />{$lang->public}<!--@end-->
            <p>{$lang->about_birthday}</p>
        </td>
    </tr>

5. zbxe/moudles/member/skins/deafult/member_info.html

line 43 부근에          부분을 삽입한다. (추가된 부분 : 붉은 색의 코드를 추가한다)

<!--@if($member_info->allow_homepage!='N' || $member_srl == $logged_info->member_srl || $logged_info->is_admin == 'Y' || $member_config->homepage_policy!='N')-->
    <tr>
        <th scope="row">{$lang->homepage}</th>
        <td><
!--@if($member_info->homepage)--><a href="{htmlspecialchars($member_info->homepage)}" onclick="window.open(this.href); return false;">{htmlspecialchars($member_info->homepage)}</a><!--@else-->&nbsp;<!--@end--></td>
    </tr>
 <!--@end-->
 <
!--@if($member_info->allow_blog!='N' || $member_srl == $logged_info->member_srl || $logged_info->is_admin == 'Y' || $member_config->blog_policy!='N')-->
    <tr>
        <th scope="row">{$lang->blog}</th>
        <td><!--@if($member_info->blog)--><a href="{htmlspecialchars($member_info->blog)}" onclick="window.open(this.href); return false;">{htmlspecialchars($member_info->blog)}</a><!--@else-->&nbsp;<!--@end--></td>
    </tr>
 <!--@end-->
 <
!--@if($member_info->allow_birthday!='N' || $member_srl == $logged_info->member_srl || $logged_info->is_admin == 'Y' || $member_config->birthday_policy!='N')-->
    <tr>
        <th scope="row">{$lang->birthday}</th>
        <td><
!--@if($member_info->birthday)-->{zdate($member_info->birthday,"Y-m-d")}<!--@else-->&nbsp;<!--@end--></td>
    </tr>
 <!--@end-->

제목 글쓴이 날짜
관리자를 제외하고는 타회원의 회원정보 보기를 막는 방법 [1] sejin7940 2014.04.04
알림센터의 익명명칭을 anonoymous에서 다른 형태로 바꾸기 [1] jambox 2014.01.08
[수정]알림센터 Lite에 메일발송 기능을 추가하기 [11] file 매실茶 2013.11.25
회원가입 확장모듈, 환영쪽지를 끄면 메일이 안날아가는 문제수정. Xiso 2013.10.31
.htaccess 파일 관련 팁(웹 사이트 퍼포먼스 향상 및 트래픽 절감 효과) [21] file 서시빈목 2013.10.22
XE 로만든 앱 + 푸쉬기능 구현하기 (안드로이드) [53] file Xiso 2013.10.16
회원가입확장 모듈 - 가입절차중 오류 발생시 처음으로 돌아가는 현상 [1] 김개발 2013.08.30
[주옥시리즈]닉네임/이메일 변경 금지 팁 [10] socialskyo 2013.08.10
Recruit 모듈 - 일반회원 채용글 등록할 수 있도록 수정 [10] 홍채화 2013.07.27
IPGUARD 모듈 배포 [33] file 우진홈 2013.07.10
아이디 계정때도 이메일 변경시 재인증 메일 발송하기 [1] 혼ME 2013.06.19
스팸 회원 삭제시 동시에 관련 글 / 댓글 자동 삭제 + 스팸IP 등록기능 구현방법입니다 [20] sejin7940 2013.05.22
그누보드 > XE 이전툴 이용하여 이전하는 방법 [4] 개터리 2013.04.26
윈도우 서버 2012 에서 제로보드XE 설치부터 사용하기. [16] file 부롱이 2013.03.29
XE 그룹아이콘 레벨아이콘 아이콘샵 동시출력하기(모르는분들 있으까봐올립니다.) [1] 모앱 2013.02.22
회원 정보에 내 포인트 현황 출력하기 [3] file 화랑529 2013.01.08
회원정보 수정 위해 비밀번호 재입력 후 튕기는 경우 [2] sejin7940 2013.01.06
1.5.4 회원정보에서 회원이 자기 이름 마음대로 수정 못하게 하는 거... [2] 샤로우 2012.12.31
닉네임 변경시 기존 게시물 연동 팁 (레벨 아이콘 에드온 이용) [9] 바붕아 2012.10.23
외부로그인 (레이아웃 파일만 수정) [4] 투씨 2012.10.13