게시판에 이름 클릭 안나오게.. 정보
그누보드 게시판에 이름 클릭 안나오게..본문
게시판에 이름 클릭 안나오게..
레이어 아예 안나오게 하려면요....어떻게 해야 하죠..
config에서 Off했는데도 안되는데요......T.T
레이어 아예 안나오게 하려면요....어떻게 해야 하죠..
config에서 Off했는데도 안되는데요......T.T
댓글 전체
$str = "<span onmousedown=\"gblayeraction(event, 'gblayer{$layerno}', 'visible')\" style='cursor:hand;'>";
만 삭제하면 됩니다..
최강그누보드..
만 삭제하면 됩니다..
최강그누보드..
lib/gnuboard.lib.php에서
아래 소스 부분을 수정하시면됩니다.....
수정방법은 연구해보세요...^^;;;;
$str = "<span onmousedown=\"gblayeraction(event, 'gblayer{$layerno}', 'visible')\" style='cursor:hand;'>";
if ($mb_id) {
$icon_file = "./data/member/$mb_id.gif";
if (file_exists($icon_file) && is_file($icon_file)) {
$size = getimagesize($icon_file);
$width = $size[0];
$height = $size[1];
if ($width > $cfg[mb_icon_width]) {
$width = $cfg[mb_icon_width];
}
if ($height > $cfg[mb_icon_height]) {
$height = $cfg[mb_icon_height];
}
$str .= "<img src='$icon_file' width='$width' height='$height' align=absbottom alt='$mb_id'> ";
}
$str .= "<span title='$mb_id'><span class=name>$name</span></span>";
/*
// 정보 비공개
if (!$open) {
$mb_id = "";
$email = "";
$homepage = "";
} else {
$profile = 1;
}
*/
} else {
$str .= $name;
}
$str .= "</span>";
아래 소스 부분을 수정하시면됩니다.....
수정방법은 연구해보세요...^^;;;;
$str = "<span onmousedown=\"gblayeraction(event, 'gblayer{$layerno}', 'visible')\" style='cursor:hand;'>";
if ($mb_id) {
$icon_file = "./data/member/$mb_id.gif";
if (file_exists($icon_file) && is_file($icon_file)) {
$size = getimagesize($icon_file);
$width = $size[0];
$height = $size[1];
if ($width > $cfg[mb_icon_width]) {
$width = $cfg[mb_icon_width];
}
if ($height > $cfg[mb_icon_height]) {
$height = $cfg[mb_icon_height];
}
$str .= "<img src='$icon_file' width='$width' height='$height' align=absbottom alt='$mb_id'> ";
}
$str .= "<span title='$mb_id'><span class=name>$name</span></span>";
/*
// 정보 비공개
if (!$open) {
$mb_id = "";
$email = "";
$homepage = "";
} else {
$profile = 1;
}
*/
} else {
$str .= $name;
}
$str .= "</span>";