그누보드 [G5] 모바일 내용보기에서 답글과 관리자 버튼 중첩현상 (5.3.1 ~ 5.3.1.2)
페이지 정보
본문
모바일 basic 스킨입니다.
전체목록보이기 체크여부에 따라서 답글 버튼과 관리자 버튼의 중첩현상이 발생합니다.
본 문제는 그누보드 업그이드 되면 수정될 가능성 있습니다.
1. 게시판 설정 > 전체목록보이기 사용 > 체크안했을때
2. 게시판 설정 > 전체목록보이기 사용 > 체크
게시판 설정 > RSS 사용 > 체크
3. 해결방법 ~~~
그누보드 5.3.1 > mobile > skin > board > basic > list.skin.php 15~16라인
<?php if ($rss_href) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01"><i class="fa fa-rss" aria-hidden="true"></i><span class="sound_only">RSS</span></a></li><?php } ?>
<?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin"><i class="fa fa-user-circle" aria-hidden="true"></i><span class="sound_only">관리자</span></a></li><?php } ?>
를 아래와 같이 변경합니다.
<?php if ($rss_href && !$wr_id) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01"><i class="fa fa-rss" aria-hidden="true"></i><span class="sound_only">RSS</span></a></li><?php } ?>
<?php if ($admin_href && !$wr_id) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin"><i class="fa fa-user-circle" aria-hidden="true"></i><span class="sound_only">관리자</span></a></li><?php } ?>
전체목록보이기 체크여부에 따라서 답글 버튼과 관리자 버튼의 중첩현상이 발생합니다.
본 문제는 그누보드 업그이드 되면 수정될 가능성 있습니다.
1. 게시판 설정 > 전체목록보이기 사용 > 체크안했을때
2. 게시판 설정 > 전체목록보이기 사용 > 체크
게시판 설정 > RSS 사용 > 체크
3. 해결방법 ~~~
그누보드 5.3.1 > mobile > skin > board > basic > list.skin.php 15~16라인
<?php if ($rss_href) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01"><i class="fa fa-rss" aria-hidden="true"></i><span class="sound_only">RSS</span></a></li><?php } ?>
<?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin"><i class="fa fa-user-circle" aria-hidden="true"></i><span class="sound_only">관리자</span></a></li><?php } ?>
를 아래와 같이 변경합니다.
<?php if ($rss_href && !$wr_id) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01"><i class="fa fa-rss" aria-hidden="true"></i><span class="sound_only">RSS</span></a></li><?php } ?>
<?php if ($admin_href && !$wr_id) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin"><i class="fa fa-user-circle" aria-hidden="true"></i><span class="sound_only">관리자</span></a></li><?php } ?>
댓글목록
등록된 댓글이 없습니다.