묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입창에서 "메일링 가입" 아니오 기본선택 변경방법?
2014.02.05 20:48
회원가입창에서 "메일링 가입" 아니오로 기본선택되어 있던데 이걸 예로 기본선택되게
변경하려면 어떤파일을 수정해야 하는지요?
댓글 3
-
ForHanbi
2014.02.05 20:56
-
다크진
2014.02.07 12:13
아... 정말 감사합니다 ㅎㅎ
-
콜롬보.
2015.03.01 08:31
<label for="mailingYes"><input type="radio" name="allow_mailing" id="mailingYes" value="Y" checked="checked"|cond="$member_info->allow_mailing != 'N'" /> {$lang->cmd_yes}</label>
<label for="mailingNo"><input type="radio" name="allow_mailing" id="mailingNo" value="N" checked="checked"|cond="$member_info->allow_mailing == 'N'" /> {$lang->cmd_no}</label>
modules/member/skins/default/signup_form.html
에서
51라인
<label for="mailingYes"><input type="radio" name="allow_mailing" id="mailingYes" value="Y" checked="checked"|cond="$member_info->allow_mailing == 'Y'" /> {$lang->cmd_yes}</label>
<label for="mailingNo"><input type="radio" name="allow_mailing" id="mailingNo" value="N" checked="checked"|cond="$member_info->allow_mailing != 'Y'" /> {$lang->cmd_no}</label>
를
<label for="mailingYes"><input type="radio" name="allow_mailing" id="mailingYes" value="Y" checked="checked"|cond="$member_info->allow_mailing != 'Y'" /> {$lang->cmd_yes}</label>
<label for="mailingNo"><input type="radio" name="allow_mailing" id="mailingNo" value="N" checked="checked"|cond="$member_info->allow_mailing == 'Y'" /> {$lang->cmd_no}</label>
로...
다른 스킨이라면 같은 html명에 비슷한 위치에 있을겁니다.