Troubleshooting


Gift card form is missed in cart

Please make sure that the following lines exist in files

File: app/design/frontend/YOUR/THEME/template/checkout/cart.phtml.
Line: <?php echo $this->getChildHtml('checkout.cart.extra') ?>
File: app/design/frontend/YOUR/THEME/layout/checkout.xml
Lines
<block type="core/text_list" name="checkout.cart.extra" translate="label">
    <label>Checkout Forms Extra</label>
</block>

Also, you can insert the form manualy. Add the following code to file.
File: app/design/frontend/YOUR/THEME/template/checkout/cart.phtml
Code:
<?php
echo $this->getLayout()->createBlock('giftcard/checkout_cart_giftcard')->setTemplate('mt/giftcard/checkout/cart/giftcard.phtml')->toHtml();
?>