Please make sure that the value of “Generate Gift Card Account when Order Item is” is set to “Ordered” . If its is set to “invoiced” , the mail will be sent at the time of invoice generation .
Go to System > Configuration > Sales > Giftcard
<?php $methodTitle = Mage::getSingleton(‘checkout/session’)->getQuote()->getPayment()->getMethodInstance()->getTitle(); ?>
<?php
echo Mage::getSingleton(‘checkout/session’)->getQuote()->getPayment()->getCcType();
echo Mage::getSingleton(‘checkout/session’)->getQuote()->getPayment()->getCcLast4();
?>
<img src=”<?php echo $this->getProductThumbnail()->resize(45); ?>” width=”45″ height=”45″ alt=”<?php echo $this->htmlEscape($this->getProductName()) ?>” />
<?php $productType= $_product->getTypeId() ?>
1) Go to System and select Configuration in admin panel
2) Go to Shipping Settings on the left menu under Sales section and Set “Allow Shipping to multiple addresses” to “No”
Edit the the code in catalogsearch.xmlpage
<reference name=”root”>
<action method=”setTemplate”><template>page/2columns-left.phtml</template></action>
</reference>
Use the below given code in progress.phtml
echo $toStep = $_REQUEST[‘toStep’]
$checkout = Mage::getSingleton(‘checkout/session’)->getQuote();
$shipping = $checkout->getShippingAddress();
<?php if($shipping->getData(‘same_as_billing’)!=’1′) { ?>
Not same
<?php } ?>
<?php
$checkout = Mage::getSingleton(‘checkout/session’)->getQuote();
$shipping = $checkout->getShippingAddress();
echo $shipping->getName() . $shipping->getStreet(1) . $shipping->getPostcode() . $shipping->getCity() . $shipping->getCountry();
?>