회원가입 약관과 개인정보취급방침을 생략(없애고) 하고 싶습니다 정보
회원가입 약관과 개인정보취급방침을 생략(없애고) 하고 싶습니다본문
어떻게 하면 생략을 할 수 있는 지요?
가르쳐주세요~
암만 찾아도 없네요
그냥 지우거나 하면 "회원약관에 동의를 하셔야 합니다" 라고 하네요
가르쳐주세요~
암만 찾아도 없네요
그냥 지우거나 하면 "회원약관에 동의를 하셔야 합니다" 라고 하네요
댓글 전체

회원스킨 register.skin.php 에서
<table width="100%" cellpadding="4" cellspacing="0" bgcolor=#EEEEEE>
<tr>
<td height=40> <b>회원가입약관</b></td>
</tr>
<tr>
<td align="center" valign="top"><textarea style="width: 98%" rows=5 readonly class=ed><?=get_text($config[cf_stipulation])?></textarea></td>
</tr>
<tr>
<td height=40> <input type=checkbox value=1 name=agree id=agree> <label for=agree>회원가입약관을 읽었으며 내용에 동의합니다.</label></td>
</tr>
</table>
<br>
<table width="100%" cellpadding="4" cellspacing="0" bgcolor=#EEEEEE>
<tr>
<td height=40> <b>개인정보취급방침</b></td>
</tr>
<tr>
<td align="center" valign="top"><textarea style="width: 98%" rows=5 readonly class=ed><?=get_text($config[cf_privacy])?></textarea></td>
</tr>
<tr>
<td height=40> <input type=checkbox value=1 name=agree2 id=agree2> <label for=agree2>개인정보취급방침을 읽었으며 내용에 동의합니다.</label></td>
</tr>
</table>
를 아래와 같이 변경하심....
<input type=hidden value=1 name=agree id=agree>
<input type=hidden value=1 name=agree2 id=agree2>
<table width="100%" cellpadding="4" cellspacing="0" bgcolor=#EEEEEE>
<tr>
<td height=40> <b>회원가입약관</b></td>
</tr>
<tr>
<td align="center" valign="top"><textarea style="width: 98%" rows=5 readonly class=ed><?=get_text($config[cf_stipulation])?></textarea></td>
</tr>
<tr>
<td height=40> <input type=checkbox value=1 name=agree id=agree> <label for=agree>회원가입약관을 읽었으며 내용에 동의합니다.</label></td>
</tr>
</table>
<br>
<table width="100%" cellpadding="4" cellspacing="0" bgcolor=#EEEEEE>
<tr>
<td height=40> <b>개인정보취급방침</b></td>
</tr>
<tr>
<td align="center" valign="top"><textarea style="width: 98%" rows=5 readonly class=ed><?=get_text($config[cf_privacy])?></textarea></td>
</tr>
<tr>
<td height=40> <input type=checkbox value=1 name=agree2 id=agree2> <label for=agree2>개인정보취급방침을 읽었으며 내용에 동의합니다.</label></td>
</tr>
</table>
를 아래와 같이 변경하심....
<input type=hidden value=1 name=agree id=agree>
<input type=hidden value=1 name=agree2 id=agree2>
위와같이 해도 안되네요. 방법없나요?