글쓰기게시판 폼 관련 질문드려요 고수님들 도와주세요
본문
첨부파일 이미지처럼 수정해야 하는데 도무지 어디에서 수정하는지 이유를 모르겠습니다
고수님들 도와주세요ㅠㅠㅠ
1.글쓰기 상태인데 모바일에서 사용자들이 글쓰기 할때 html 저 버튼이 안나와도 되는데 보여져서 없애고 싶어요.
2.갤럭시 폰에서 첨부파일이 영어로 나오는데 아무리 찾아봐도 안나오는데 어떻게 수정하시는지 아실까요..
3. 자동입력방지 숫자 입력에 음성지원이 숫자폼 위에 있는데 숫자 아래로 이동시키고자 하는데 태그를 봐도 잘 이해가 안됩니다
고수님들 제발 도와주세요ㅠㅠㅠ
답변 2
해당 게시판 스킨 write.skin.php 파일에서 여기 주석 처리
// $option .= "\n".'<input type="checkbox" id="html" name="html" onclick="html_auto_br(this);" value="'.$html_value.'" '.$html_checked.'>'."\n".'<label for="html">HTML</label>';
질문은 가급적 하나씩..
/plugin/kcaptcha/kcaptcha.lib.php 238 번째줄
function captcha_html($class="captcha")
{
if(is_mobile())
$class .= ' m_captcha';
$html .= "\n".'<script>var g5_captcha_url = "'.G5_CAPTCHA_URL.'";</script>';
//$html .= "\n".'<script>var g5_captcha_path = "'.G5_CAPTCHA_PATH.'";</script>';
$html .= "\n".'<script src="'.G5_CAPTCHA_URL.'/kcaptcha.js"></script>';
$html .= "\n".'<fieldset id="captcha" class="'.$class.'">';
$html .= "\n".'<legend><label for="captcha_key">자동등록방지</label></legend>';
if (is_mobile()) $html .= '<audio id="captcha_audio" controls></audio>';
//$html .= "\n".'<img src="#" alt="" id="captcha_img">';
$html .= "\n".'<img src="'.G5_CAPTCHA_URL.'/img/dot.gif" alt="" id="captcha_img">';
$html .= '<input type="text" name="captcha_key" id="captcha_key" required class="captcha_box required" size="6" maxlength="6">';
if (!is_mobile()) $html .= "\n".'<button type="button" id="captcha_mp3"><span></span>숫자음성듣기</button>';
$html .= "\n".'<button type="button" id="captcha_reload"><span></span>새로고침</button>';
$html .= "\n".'<span id="captcha_info">자동등록방지 숫자를 순서대로 입력하세요.</span>';
$html .= "\n".'</fieldset>';
return $html;
}
이 부분에서 순서 변경하면 될껄요 ?