[해결중] 가격이 0원일때
본문
가격이 0원일때 0원이라고 보이지않고 옵션별 가격상이 라고 하고싶은데 어디 부분에서 변경을 해야할까요?
/www/eyoom/core/shop/list.10.skin.php
파일에서 31번줄
// 할인율 계산
$row['dc_ratio'] = $row['it_cust_price'] ? $shop->dc_ratio($row['it_cust_price'], $row['it_price']): 0;
if ($this->view_it_cust_price || $this->view_it_price) {
if ($this->view_it_cust_price && $row['it_cust_price']) {
$row['it_cust_price'] = "<strike>".preg_replace('/원/','',display_price($row['it_cust_price']))."</strike>";
}
if ($this->view_it_price) {
$row['it_tel_inq'] = preg_replace('/원/','',display_price(get_price($row), $row['it_tel_inq']));
}
}
이부분 에서 수정을 해야하는거 같은데 가격이 0원일때 0원이라고 표기보다는 옵션별 가격상이 로 표기하고싶습니다.
도움좀 부탁드립니다.
최신글이 없습니다.
최신글이 없습니다.
댓글목록3
이윰IN님의 댓글
2. /lib/shop.lib.php 파일 610번째 라인에 전화문의 관련 소스가 있어요.
소스에서 전화문의를 원하는 문구로 수정하시면 될 것 같네요.
히스토리님의 댓글의 댓글
0원인 가격에 한해서만 옵션별 가격상이 라고 넣고 싶습니당! ㅠ
이윰IN님의 댓글의 댓글