영카트 주문서에서 삭제하고 싶은 텍스트가 있습니다.

영카트 주문서에서 삭제하고 싶은 텍스트가 있습니다.

QA

영카트 주문서에서 삭제하고 싶은 텍스트가 있습니다.

답변 2

본문

3696594094_1562156866.7067.jpg

 

영카트 주문서에서 선택한 옵션값 마지막에 노출되는 '1개 (+)'  텍스트를 없애고 싶습니다.

어느 파일 어느 곳을 삭제해야하는지 고수님들의 조언 부탁드립니다~!

이 질문에 댓글 쓰기 :

답변 2

파일 위치 : /lib/shop.lib.php

함수명 :  print_item_options()

 

ex)

function print_item_options($it_id, $cart_id)

{

    global $g5;

 

    $sql = " select ct_option, ct_qty, io_price

                from {$g5['g5_shop_cart_table']} where it_id = '$it_id' and od_id = '$cart_id' order by io_type asc, ct_id asc ";

    $result = sql_query($sql);

 

    $str = '';

    for($i=0; $row=sql_fetch_array($result); $i++) {

        if($i == 0)

            $str .= '<ul>'.PHP_EOL;

        $price_plus = '';

        if($row['io_price'] >= 0)

            $price_plus = '+';

        $str .= '<li>'.get_text($row['ct_option']).' '.$row['ct_qty'].'개 ('.$price_plus.display_price($row['io_price']).')</li>'.PHP_EOL;

    }

 

    if($i > 0)

        $str .= '</ul>';

 

    return $str;

}

 

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