문제

Need help removing the following from beneath the Add to Cart. Thanks.

enter image description here

        <?php if (!$this->hasOptions()):?>
            <div class="add-to-box">
                <?php if($_product->isSaleable()): ?>
                    <?php echo $this->getChildHtml('addtocart') ?>
                    <?php if( $this->helper('wishlist')->isAllow() || 
                $_compareUrl=$this->helper('catalog/product_compare')-
                >getAddUrl($_product)): ?>
                        <span class="or"><?php echo $this->__('OR') ?>
                </span>
                    <?php endif; ?>
                <?php endif; ?>
                <?php echo $this->getChildHtml('addto') ?>
            </div>
            <?php echo $this->getChildHtml('extra_buttons') ?>
        <?php elseif (!$_product->isSaleable()): ?>
            <div class="add-to-box">
                <?php echo $this->getChildHtml('addto') ?>
            </div>
        <?php endif; ?>
도움이 되었습니까?

해결책

remove this code in your view.phtml

 <?php echo $this->getChildHtml('addto') ?>

or Remove this Block in your local.xml

<remove name="addto" />
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top