영카트에서 판매가격에 원표시를 없에고싶습니다.

영카트에서 판매가격에 원표시를 없에고싶습니다.

QA

영카트에서 판매가격에 원표시를 없에고싶습니다.

답변 1

본문

아무리찾아도 안보이네요~~


<tr>
                <th scope="row">판매가격</th>
                <td>
                    <strong><?php echo display_price(get_price($it)); ?></strong>
                    <input type="hidden" id="it_price" value="<?php echo get_price($it); ?>">
                </td>
            </tr>

이부분인거같습니다만~~

1923646315_1582761575.6721.png

이 질문에 댓글 쓰기 :

답변 1

lib/shop.lib.php 파일에서 원 글자 삭제

 

// 금액 표시
function display_price($price, $tel_inq=false)
{
    if ($tel_inq)
        $price = '전화문의';
    else
        $price = number_format($price, 0).'원';

    return $price;
}

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 123,638
© SIRSOFT
현재 페이지 제일 처음으로