정기배송 상품을 구매할 때, 기본 옵션을 1회 구매 옵션으로 변경할 수 있어요.
자세한 내용은 아래에서 확인해 주세요.
자세히 알아보기
정기배송 상품의 기본 옵션을 1회 구매 옵션으로 변경하려면, 디자인 소스를 수정해야 해요.
스크립트 수정하는 방법을 알려 드릴게요.
아래의 가이드를 참고해 주세요.
※ 디자인을 적용할 때 테스트몰 또는 테스트 스킨에서 적용해 보세요.
그리고 문제가 없다면 이용하는 대표 디자인에 적용하여 이용해 주세요.
/product/detail.html 에서
현재)
<!-- 정기 결재 추가 내용-->
<div class="regularDelivery {$regular_delivery_display|display}">
<div class="head">
<strong class="title">구매방법</strong>
<label class="gLabel">{$regular_deliveryF} 1회구매</label>
<label class="gLabel">{$regular_deliveryT} 정기배송</label>
</div>
수정 후)
<!-- 정기 결재 추가 내용-->
<div class="regularDelivery {$regular_delivery_display|display}">
<div class="head">
<strong class="title">구매방법</strong>
<label class="gLabel">{$regular_deliveryF|replace:is_subscriptionF",is_subscriptionF" checked=checked} 1회구매</label>
<label class="gLabel">{$regular_deliveryT|replace:checked,nochecked} 정기배송</label>
</div>