유형별 상품리스트 설정 추가
This commit is contained in:
@ -18,11 +18,11 @@ else
|
||||
include_once('./_head.php');
|
||||
|
||||
// 한페이지에 출력하는 이미지수 = $list_mod * $list_row
|
||||
$list_mod = 3; // 한줄에 이미지 몇개씩 출력?
|
||||
$list_row = 5; // 한 페이지에 몇라인씩 출력?
|
||||
$list_mod = $default['de_listtype_list_mod']; // 한줄에 이미지 몇개씩 출력?
|
||||
$list_row = $default['de_listtype_list_row']; // 한 페이지에 몇라인씩 출력?
|
||||
|
||||
$img_width = 230; // 출력이미지 폭
|
||||
$img_height = 230; // 출력이미지 높이
|
||||
$img_width = $default['de_listtype_img_width']; // 출력이미지 폭
|
||||
$img_height = $default['de_listtype_img_height']; // 출력이미지 높이
|
||||
?>
|
||||
|
||||
<?php
|
||||
@ -34,7 +34,7 @@ else
|
||||
$order_by = 'it_order, it_id desc';
|
||||
|
||||
if (!$skin)
|
||||
$skin = 'list.10.skin.php';
|
||||
$skin = $default['de_listtype_list_skin'];
|
||||
else
|
||||
$skin = preg_replace('#\.+/#', '', $skin);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user