웹마스터 팁

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

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-->

제목 글쓴이 날짜
회원정보 손쉽게 엑셀 파일로 저장하기 [34] thejeon 2009.08.05
확장변수에 회원정보를 넣어보자 [10] file 개돌 2009.06.30
XE 위키에 최근 접속 페이지 정보 출력 file 개돌 2009.04.27
IIS에서 XE 설치 시 FTP 정보 등록에서 오류 조치 [4] impre 2009.02.20
알ftp, editplus 계정정보 파일 백업 yjnet 2009.01.10
회원정보 이미지 항목 추가 [3] 개돌 2008.12.22
이미지 정보표시(EXIF) 영문을 한글로 [6] file Diver 2008.11.23
일반 페이지에 로그인(세션) 정보 활용하기 [13] noirzo 2008.11.07
동일서버내 페이지에서 로그인정보 활용하기... [4] 수로 2008.09.06
닉네임, 이름 정보변경 못하게 하기. [6] 부엉이 2008.08.06
최고관리자 이외에는 ''회원정보보기''를 막기 [13] 비나무 2008.07.10
오른쪽 상단에 로그인 정보 출력하기 (게시판 만으로) file youngminpark 2008.05.15
회원 확장 정보를 레이아웃에서 활용하기 [6] [1] file mooo 2008.05.06
회원 기본정보 공개여부 및 정보변경 옵션으로 처리하기(Member Moudle) [18] file 대암지기 2008.03.04
[정식 버전 1.0.0]회원 정보에서 ID 변경하기(2) 스킨부분 [3] 대암지기 2008.02.27
[정식 버전 1.0.0] 회원 정보에서 ID 변경하기(1) 모듈부분 [1] 대암지기 2008.02.27
[정식 버전 1.0.0] 회원 정보에서 ID 변경하기(0) 안내 [1] file 대암지기 2008.02.27
[정식 버전 1.0.0][완결편]회원가입시 기본 정보공개 여부 체크하기(2) 스킨부분 대암지기 2008.02.24
[정식 버전 1.0.0][완결편]회원가입시 기본 정보공개 여부 체크하기(1) 모듈부분 [4] 대암지기 2008.02.24
[정식 버전 1.0.0][완결편]회원가입시 기본 정보공개 여부 체크하기(안내) [2] file 대암지기 2008.02.24