메인화면 히트 추천 dc 아이콘을 없애고 싶어요 어떻게 없애는지 ㅠㅠ..
그리고 메인처럼 상품간격사이에 저렇게 선을 넣고 싶습니다.
선을넣긴넣는데 양쪽끝에 안나오게 해야되는데 자꾸 나와서요 ㅠㅠ...
그리고 메인처럼 상품간격사이에 저렇게 선을 넣고 싶습니다.
선을넣긴넣는데 양쪽끝에 안나오게 해야되는데 자꾸 나와서요 ㅠㅠ...
댓글 4개
메인화면 설정에서 스킨을 maintype12.inc.php 로 사용하신다면 다른 스킨을 사용해 보시거나
shop/maintype12.inc.php 의
$sql2 = " select * from $g4[yc4_item_table] where it_id = '$row[it_id]' ";
$row2 = sql_fetch($sql2);
// 특정상품아이콘
$icon = "";
if ($row2[it_type1]) $icon .= " <img src='$g4[shop_img_path]/icon_type1.gif' border=0 align=absmiddle>";
if ($row2[it_type2]) $icon .= " <img src='$g4[shop_img_path]/icon_type2.gif' border=0 align=absmiddle>";
if ($row2[it_type3]) $icon .= " <img src='$g4[shop_img_path]/icon_type3.gif' border=0 align=absmiddle>";
if ($row2[it_type4]) $icon .= " <img src='$g4[shop_img_path]/icon_type4.gif' border=0 align=absmiddle>";
if ($row2[it_type5]) $icon .= " <img src='$g4[shop_img_path]/icon_type5.gif' border=0 align=absmiddle>";
이 코드를 삭제해 보시기 바랍니다.
프로그램의 기능을 수정하시는 경우는 고객지원이 어려운점 양해 바랍니다.
FTP 정보를 비밀글로 남겨주시면 확인해 드리겠습니다.
shop/maintype12.inc.php 의
$sql2 = " select * from $g4[yc4_item_table] where it_id = '$row[it_id]' ";
$row2 = sql_fetch($sql2);
// 특정상품아이콘
$icon = "";
if ($row2[it_type1]) $icon .= " <img src='$g4[shop_img_path]/icon_type1.gif' border=0 align=absmiddle>";
if ($row2[it_type2]) $icon .= " <img src='$g4[shop_img_path]/icon_type2.gif' border=0 align=absmiddle>";
if ($row2[it_type3]) $icon .= " <img src='$g4[shop_img_path]/icon_type3.gif' border=0 align=absmiddle>";
if ($row2[it_type4]) $icon .= " <img src='$g4[shop_img_path]/icon_type4.gif' border=0 align=absmiddle>";
if ($row2[it_type5]) $icon .= " <img src='$g4[shop_img_path]/icon_type5.gif' border=0 align=absmiddle>";
이 코드를 삭제해 보시기 바랍니다.
프로그램의 기능을 수정하시는 경우는 고객지원이 어려운점 양해 바랍니다.
FTP 정보를 비밀글로 남겨주시면 확인해 드리겠습니다.
shop/maintype10.inc.php 을 이렇게 수정해 봤습니다.
참고로 프로그램의 기능을 수정하시는 경우는 고객지원이 어려운점 양해 바랍니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width=100% cellpadding=2 cellspacing=0 border=0>
<tr>
<?
$i = 0;
do {
if ( ($i>0) && (($i%$list_mod)==0) ) {
echo "</tr>\n\n";
//echo "<tr><td colspan='$list_mod' background='$g4[shop_img_path]/line_h.gif' height=1></td></tr>\n\n";
echo "<tr><td colspan='$list_mod' bgcolor='#000000' height='10'></td></tr>\n\n";
echo "<tr>\n";
}
if ($i == 0) {
echo "
<td width='{$td_width}%' align=center valign=top>
<br>
<table width=98% cellpadding=2 cellspacing=0 border=0>
<tr><td>
<img src='/images/mm_25-71.jpg'/>
</td><td bgcolor=#ffffff width=0 rowspan=3></td></tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table></td>";
} else {
$style = "";
if (($i%$list_mod)!=0) {
$style="border-left:10px solid #000000;";
}
echo "
<td width='{$td_width}%' align=center valign=top>
<br>
<div style='$style'>
<table width=98% cellpadding=2 cellspacing=0 border=0>
<tr><td align=center>".get_it_image($row[it_id]."_s", $img_width , $img_height, $row[it_id])."</td></tr>
<tr><td align=center>".it_name_icon($row)."</td></tr>";
if ($row[it_cust_amount] && !$row[it_gallery])
echo "<tr><td align=center><strike>".display_amount($row[it_cust_amount])."</strike></td></tr>";
echo "<tr><td align=center>";
if (!$row[it_gallery])
echo "<span class=amount>".display_amount(get_amount($row), $row[it_tel_inq])."</span>";
echo "</td></tr></table></div></td>";
}
$i++;
} while ($row=sql_fetch_array($result));
// 나머지 td 를 채운다.
if (($cnt = $i%$list_mod) != 0)
for ($k=$cnt; $k<$list_mod; $k++)
echo " <td> </td>\n";
?>
</tr>
</table>
참고로 프로그램의 기능을 수정하시는 경우는 고객지원이 어려운점 양해 바랍니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width=100% cellpadding=2 cellspacing=0 border=0>
<tr>
<?
$i = 0;
do {
if ( ($i>0) && (($i%$list_mod)==0) ) {
echo "</tr>\n\n";
//echo "<tr><td colspan='$list_mod' background='$g4[shop_img_path]/line_h.gif' height=1></td></tr>\n\n";
echo "<tr><td colspan='$list_mod' bgcolor='#000000' height='10'></td></tr>\n\n";
echo "<tr>\n";
}
if ($i == 0) {
echo "
<td width='{$td_width}%' align=center valign=top>
<br>
<table width=98% cellpadding=2 cellspacing=0 border=0>
<tr><td>
<img src='/images/mm_25-71.jpg'/>
</td><td bgcolor=#ffffff width=0 rowspan=3></td></tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table></td>";
} else {
$style = "";
if (($i%$list_mod)!=0) {
$style="border-left:10px solid #000000;";
}
echo "
<td width='{$td_width}%' align=center valign=top>
<br>
<div style='$style'>
<table width=98% cellpadding=2 cellspacing=0 border=0>
<tr><td align=center>".get_it_image($row[it_id]."_s", $img_width , $img_height, $row[it_id])."</td></tr>
<tr><td align=center>".it_name_icon($row)."</td></tr>";
if ($row[it_cust_amount] && !$row[it_gallery])
echo "<tr><td align=center><strike>".display_amount($row[it_cust_amount])."</strike></td></tr>";
echo "<tr><td align=center>";
if (!$row[it_gallery])
echo "<span class=amount>".display_amount(get_amount($row), $row[it_tel_inq])."</span>";
echo "</td></tr></table></div></td>";
}
$i++;
} while ($row=sql_fetch_array($result));
// 나머지 td 를 채운다.
if (($cnt = $i%$list_mod) != 0)
for ($k=$cnt; $k<$list_mod; $k++)
echo " <td> </td>\n";
?>
</tr>
</table>
게시글 목록
| 번호 | 제목 |
|---|---|
| 56073 | |
| 56067 | |
| 56065 | |
| 56060 | |
| 56058 | |
| 56055 | |
| 56051 | |
| 56048 | |
| 56044 | |
| 56043 | |
| 56042 | |
| 56039 | |
| 56035 | |
| 56032 | |
| 56030 | |
| 56028 | |
| 56025 | |
| 56018 | |
| 56012 | |
| 56010 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기