예를 들어 제품 세부 정보 페이지에서 장바구니에 추가 버튼을 사용 중지하려면 아래 코드를 추가하십시오.
이동 응용 프로그램에 \ 디자인 \ 프론트 엔드 \\\ 템플릿 \ 카탈로그 \ 제품 \보기 \ addtocart.phtml getProduct() 후 코드 아래에 추가;? 다음과 같은>
<?php if($_product->getTypeId() != 'simple'): ?>
<?php endif; ?>
그래서 당신의 파일보기.
<?php $_product = $this->getProduct();?>
<?php if($_product->getTypeId() != 'simple'): ?>
<?php $buttonTitle = $this->__('Add to Cart'); ?>
<?php if($_product->isSaleable()): ?>
<div class="add-to-cart">
<?php if(!$_product->isGrouped()): ?>
<label for="qty"><?php echo $this->__('Qty:') ?></label>
<input type="text" name="qty" id="qty" maxlength="12" value="<?php echo $this->getProductDefaultQty() * 1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
<?php endif; ?>
<button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
<?php echo $this->getChildHtml('', true, true) ?>
</div>
<?php endif; ?>
<?php endif; ?>
그리고 끝났습니다!