답변 2개
모바일 스킨들은 원래 시중 가격이 노출되지 않습니다.
관련 상품 스킨 파일에서 가격 부분 전체를 이렇게 변경하세요.
(PC용 스킨에 동일한 부분이 있으니 참고하셔도 됩니다.)
mobile/skin/shop/basic/relation.10.skin.php
if ($this->view_it_cust_price || $this->view_it_price) {
echo "<div class=\"sct_cost\">\n";
if ($this->view_it_cust_price && $row['it_cust_price']) {
echo "<strike>".display_price($row['it_cust_price'])."</strike>\n";
}
if ($this->view_it_price) {
echo display_price(get_price($row), $row['it_tel_inq'])."\n";
}
echo "</div>\n";
}
그리고 영카트 5.3 원본 모바일 기준으로..
$list->set_view('it_cust_price', true);
이건 item.form.skin.php 스킨 파일에 추가해야 합니다. 관련 상품 출력 부분 있을 겁니다.
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
덕분에 쉽게 해결하였습니다.
좋은 하루 되세요~^^