답변 2개
mobile/shop/list.php 파일에 빨간 줄 추가.
이코드가 두 군데에 있는데 위에 있는 거 말고 두번째에 있는 겁니다. 안 되면 두 군데 다 해보시고..
$list->set_view('it_name', true);
$list->set_view('it_price', true);
$list->set_view('it_cust_price', true);
echo $list->run();
mobile/skin/shop/basic/list.10.skin.php 파일에서
if ($this->view_it_price) {
echo "
echo display_price(get_price($row), $row['it_tel_inq'])."\n";
echo "
}
여기를 이렇게 수정.
if ($this->view_it_cust_price || $this->view_it_price) {
echo "
if ($this->view_it_cust_price && $row['it_cust_price']) {
echo "".display_price($row['it_cust_price'])."\n";
}
if ($this->view_it_price) {
echo display_price(get_price($row), $row['it_tel_inq'])."\n";
}
echo "
}
위 코드는 PC 용 스킨에 있는 코드를 그대로 복사해 온 겁니다.
PC 용 스킨을 참고하세요.
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인