채택완료

제품 상세페이지 "item.form.skin.php" 중 별색처리 하고싶은 부분이 있는데

2019-05-15 (수) 16:44:24 2,661

제품 상세페이지(item.form.skin.php) 중

"구매금액(추가옵션 제외)의 30%" 이렇게 노출되는 걸

"구매금액(추가옵션 제외)의 30%" 이런 식으로 **% 만 별색처리를 하고싶은데

어떻게 해야될지 모르겠어요. 혹시 아시는 분 계신가요???

Copy
<?php if ($config['cf_use_point']) { // 포인트 사용한다면 ?>
            <tr>
                <th scope="row" style="color:#F00;"><?php echo _t('포인트'); ?></th>
                <td>
                    <?php
                    if($it['it_poin제품 상세페이지 "item.form.skin.php" 중 별색처리 하고싶은 부분이 있는데t_type'] == 2) {
                        echo _t('구매금액(추가옵션 제외)의').' '.$it['it_point'].'%';
                    } else {
                        $it_point = get_item_point($it);
                        echo number_format($it_point)._t('점');
                    }
                    ?>
                </td>
            </tr>
            <?php } ?>

답변 1개 / 댓글 1개

채택된 답변
+20 포인트
2019-05-15 (수) 16:50:54

<?php if ($config['cf_use_point']) { // 포인트 사용한다면 ?>
            <tr>
                <th scope="row" style="color:#F00;"><?php echo _t('포인트'); ?></th>
                <td>
                    <?php
                    if($it['it_point_type'] == 2) {
                        echo _t('구매금액(추가옵션 제외)의').' <span class="red">'.$it['it_point'].'%</span>';
                    } else {
                        $it_point = get_item_point($it);
                        echo number_format($it_point)._t('점');
                    }
                    ?>
                </td>
            </tr>
            <?php } ?>

이렇게 해보세요.

답변에 대한 댓글 1개

감사합니다!

답변을 작성하려면 로그인이 필요합니다.