Shopping Cart – Free Shipping Coupon Not Applying

cartcouponcoupon-codesshopping-cart-price-rules

I have created a coupon code for free shipping following steps similar to described here, but when I try to use valid or not valid coupon code Magento (1.4.1.1) does nothing.

Site URL and coupon code is TEST

Any clue?

Thanks

Best Answer

My suggestion is to remove coupon code form from cart table footer and add it above Totals table.

Edit cart.phtml file under your theme template app/design/frontend/custom_package/custom_theme/template/checkout/cart.phtml and add the following code within this div <div class="cartRow"> before <div class="cartRight">:

<div class="cartRight" style="margin-bottom: 20px;">
    <?php echo $this->getChildHtml('coupon') ?>
</div>

The output should look like this screenshot:

enter image description here

Related Topic