모바일에서 특정 게시판만 head tail 삭제하기
모바일에서는 게시판 상단, 하단 파일 경로 설정이 적용되지 않습니다.
관련해서 예전에 이런 팁을 올린 적이 있었죠.
http://gnustudy.com/bbs/board.php?bo_table=skin_board&wr_id=80
위 팁을 사용해도 좋지만 특정 게시판 하나만 모바일에서 상단, 하단 파일을 삭제하고 싶으면
간단하게 이렇게 하는 방법도 있습니다.
예를 들어 자유게시판 (게시판id : free)에 적용한다면..
수정 파일1 : bbs/board_head.php
_head.php 파일 include 부분을 이렇게 감싸주세요.
// 게시판 관리의 상단 내용
if (G5_IS_MOBILE) {
// 모바일의 경우 설정을 따르지 않는다.
if ($bo_table != 'free') {
include_once(G5_BBS_PATH.'/_head.php');
}
수정 파일2 : bbs/board_tail.php
_tail.php 파일 include 부분을 이렇게 감싸주세요.
// 게시판 관리의 하단 파일 경로
if (G5_IS_MOBILE) {
echo html_purifier(stripslashes($board['bo_mobile_content_tail']));
// 모바일의 경우 설정을 따르지 않는다.
if ($bo_table != 'free') {
include_once(G5_BBS_PATH.'/_tail.php');
}