/skin/member/basic/formmail.skin.php
여기서 한글로 된것을 영문으로 수정을 하였는데요.
PC에서는 영문으로 보이는데
모바일에서는 한글로만 보입니다.
수정한 영문으로 보여지게 할수 없을까요?
이 폼메일을 아이프레임으로 불러오고 있어요.
Copy
<?phpif (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);?> <!-- 폼메일 시작 { --><div id="formmail" class="new_win mbskin"> <h1 id="win_title">WBS Corporation</h1> <form name="fformmail" action="./formmail_send.php" onsubmit="return fformmail_submit(this);" method="post" enctype="multipart/form-data" style="margin:0px;"> <input type="hidden" name="to" value="<?php echo $email ?>"> <input type="hidden" name="attach" value="2"> <input type="hidden" name="token" value="<?php echo $token ?>"> <?php if ($is_member) { // 회원이면 ?> <input type="hidden" name="fnick" value="<?php echo $member['mb_nick'] ?>"> <input type="hidden" name="fmail" value="<?php echo $member['mb_email'] ?>"> <?php } ?> <div class="tbl_frm01 tbl_form"> <table> <caption>E-MAIL</caption> <tbody> <?php if (!$is_member) { ?> <tr> <th scope="row"><label for="fnick">NAME<strong class="sound_only">necessariness </strong></label></th> <td><input type="text" name="fnick" id="fnick" required class="frm_input required"></td> </tr> <tr> <th scope="row"><label for="fmail">E-MAIL<strong class="sound_only">necessariness </strong></label></th> <td><input type="text" name="fmail" id="fmail" required class="frm_input required"></td> </tr> <?php } ?> <tr> <th scope="row"><label for="subject">TITLE<strong class="sound_only">necessariness </strong></label></th> <td><input type="text" name="subject" id="subject" required class="frm_input required"></td> </tr> <tr> <th scope="row">FORM</th> <td> <input type="radio" name="type" value="0" id="type_text" checked> <label for="type_text">TEXT</label> <input type="radio" name="type" value="1" id="type_html"> <label for="type_html">HTML</label> <input type="radio" name="type" value="2" id="type_both"> <label for="type_both">TEXT+HTML</label> </td> </tr> <tr> <th scope="row"><label for="content">CONTENT<strong class="sound_only">necessariness </strong></label></th> <td><textarea name="content" id="content" required class="required"></textarea></td> </tr> <tr> <th scope="row"><label for="file1">FILE 1</label></th> <td> <input type="file" name="file1" id="file1" class="frm_input"> <!-- 첨부 파일은 누락될 수 있으므로 메일을 보낸 후 파일이 첨부 되었는지 반드시 확인해 주시기 바랍니다. --> </td> </tr> <tr> <th scope="row"><label for="file2">FILE 2</label></th> <td><input type="file" name="file2" id="file2" class="frm_input"></td> </tr> <tr> <th scope="row">NECESSARINESS</th> <td><?php echo captcha_html(); ?></td> </tr> </tbody> </table> </div> <div class="win_btn"> <input type="submit" value="SEND" id="btn_submit" class="btn_submit"> <button type="button" onclick="window.close();">CLOSE</button> </div> </form></div> <script>with (document.fformmail) { if (typeof fname != "undefined") fname.focus(); else if (typeof subject != "undefined") subject.focus();} function fformmail_submit(f){ <?php echo chk_captcha_js(); ?> if (f.file1.value || f.file2.value) { // 4.00.11 if (!confirm("첨부파일의 용량이 큰경우 전송시간이 오래 걸립니다.\n\n메일보내기가 완료되기 전에 창을 닫거나 새로고침 하지 마십시오.")) return false; } document.getElementById('btn_submit').disabled = true; return true;}</script><!-- } 폼메일 끝 -->
답변 1개 / 댓글 1개
채택된 답변
+20 포인트
2015-09-14 (월) 16:58:35
모바일도 스킨을 따로 수정해야 할 텐데요..
./mobile/skin/member/basic/formmail.skin.php 여기에도 영어로 수정해 보세요.^^
답변에 대한 댓글 1개
2015-09-14 (월) 17:04:27
답변을 작성하려면 로그인이 필요합니다.
감사합니다. (__)