라이믹스 회원가입폼에서 메일링 가입, 쪽지 수신여부 란을 없앨 수 있을까요?

 

구글링해보니 XE 포럼에 관련 글이 올라와있지만, 현재 코드를 보니 많이 바뀌어서 수정을 못하겠더라구요... ㅠㅠ

  • profile

    스킨에서 숨기는 게 가장 간단합니다.

    modules/member/skins/스킨명/signup_form.html

     

    아래로 쭉 내려가 보면 allow_mailing, allow_message라는 부분이 있을 거예요.

    각각 그 윗줄을 보면 <div class="control-group"> 라고 되어 있습니다.

    이걸 <div class="control-group" style="display:none"> 으로 바꿔주세요.

  • profile ?
    기진곰님 답변 덕분에 항상 큰 도움을 얻고 갑니다.

    감사합니다 ^_^
  • profile profile
    기진곰님 감사합니다! 덕분에 해결했습니다~
  • profile

    xe의 경우에는 어떻게 가릴 수 있을지 여쭤봐도될까요? @기진곰님 ..

     

        <!--@else-->
        <li loop="$formTags=>$formTag" cond="$formTag->name != 'signature'">
            <div class="th"><label>{$formTag->title}</label></div>
            <div class="td">{$formTag->inputTag}</div>
        </li>
        <!--@end-->
        <li>
            <div class="th"><label>{$lang->allow_mailing}</label></div>
            <div class="td">
                <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>
            </div>
        </li>
        <li>
            <div class="th"><label>{$lang->allow_message}</label></div>
            <div class="td">
                <label for="allow_{$key}" loop="$lang->allow_message_type=>$key,$val"><input type="radio" name="allow_message" value="{$key}" checked="checked"|cond="$member_info->allow_message == $key || (!$member_info && $key == 'Y')" id="allow_{$key}" /> {$val}</label>
            </div>
        </li>
        </ul>

     

    이 부분맞나요?