Magento 页眉顶部的购物车不工作没有$\u cartQty始终显示为零 我的购物车: () 块类型是什么hi@papa.ramu您有解决问题的方法吗? <div class="block block-cart"> <?php $_

Magento 页眉顶部的购物车不工作没有$\u cartQty始终显示为零 我的购物车: () 块类型是什么hi@papa.ramu您有解决问题的方法吗? <div class="block block-cart"> <?php $_,magento,Magento,页眉顶部的购物车不工作没有$\u cartQty始终显示为零 我的购物车: () 块类型是什么hi@papa.ramu您有解决问题的方法吗? <div class="block block-cart"> <?php $_cartQty = ( $this->getSummaryCount() ) ? $this->getSummaryCount() : 0; ?> <!-- <div class="block-title

页眉顶部的购物车不工作没有$\u cartQty始终显示为零

我的购物车:


()


块类型是什么hi@papa.ramu您有解决问题的方法吗?
<div class="block block-cart">
    <?php $_cartQty = ( $this->getSummaryCount() ) ? $this->getSummaryCount() : 0; ?>


   <!-- <div class="block-title">
        <strong><span><?php echo $this->__('My Cart') ?></span></strong>
    </div>-->
    <h3>My Cart:</h3>

    <div class="block-content">
    <?php if ($_cartQty>0): ?>
        <div class="summary">
            <?php if ($_cartQty==1): ?>
                <p class="amount"><?php echo $this->__('There is <a href="%s">1 item</a> in your cart.', $this->getUrl('checkout/cart')) ?></p>
            <?php else: ?>
                <p class="amount"><?php echo $this->__('There are <a href="%s">%s items</a> in your cart.', $this->getUrl('checkout/cart'), $_cartQty) ?></p>
            <?php endif ?>
            <p class="subtotal">
                <?php if ($this->canApplyMsrp()): ?>
                    <span class="map-cart-sidebar-total"><?php echo $this->__('ORDER TOTAL WILL BE DISPLAYED BEFORE YOU SUBMIT THE ORDER'); ?></span>
                <?php else: ?>
                    <span class="label"><?php echo $this->__('Cart Subtotal:') ?></span> <?php echo Mage::helper('checkout')->formatPrice($this->getSubtotal()) ?>
                    <?php if ($_subtotalInclTax = $this->getSubtotalInclTax()): ?>
                        <br />(<?php echo Mage::helper('checkout')->formatPrice($_subtotalInclTax) ?> <?php echo Mage::helper('tax')->getIncExcText(true) ?>)
                    <?php endif; ?>
                <?php endif; ?>
            </p>
        </div>
    <?php endif ?>
    <?php if($_cartQty && $this->isPossibleOnepageCheckout()): ?>
    <div class="actions">
        <?php echo $this->getChildHtml('extra_actions') ?>
        <button type="button" title="<?php echo $this->__('Checkout') ?>" class="button" onclick="setLocation('<?php echo $this->getCheckoutUrl() ?>')"><span><span><?php echo $this->__('Checkout') ?></span></span></button>
    </div>
    <?php endif ?>
    <?php $_items = $this->getRecentItems() ?>
    <?php if(count($_items)): ?>
        <p class="block-subtitle"><?php echo $this->__('Recently added item(s)') ?></p>
        <ol id="cart-sidebar" class="mini-products-list">
        <?php foreach($_items as $_item): ?>
            <?php echo $this->getItemHtml($_item) ?>
        <?php endforeach; ?>
        </ol>
        <script type="text/javascript">decorateList('cart-sidebar', 'none-recursive')</script>
    <?php else: ?>
       <div class="empty">
0 item(s) - <span class="price">$0.00</span> <div class="cart-content" style="display: none;">
You have no items in your shopping cart. </div>
</div>
    <?php endif ?>
    </div>
</div>