안녕하세요.
오션갤러리 게시판 혹은 비너스 웹진 게시판의 목록에서 게시글을 클릭했을때
게시글 본문 내용을 팝업창으로 호출 시킬수 있는 방법이 있을까요?
확인부탁드립니다.
감사합니다.
안녕하세요~^^
FTP로 접속해서 /wp-content/plugins/kboard/skin/사용중인스킨/list.php 파일에서
아래의 코드를 찾아서
<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>">
아래의 코드로 모두 교체해보세요.
<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>" onclick="window.open(this.href, '<?php echo $content->title?>', 'width=700, height=800, scrollbars=yes'); return false;">
위 코드에서 width(너비)와 height(높이)는 적절히 수정 후 사용해보세요.
팝업창이 아닌 새창으로 표시하시려면 아래의 코드를 적용해보세요.
<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>" target="_blank">
고맙습니다.