Use the below given code in progress.phtml
echo $toStep = $_REQUEST[‘toStep’]
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();
?>
<?php
$checkout = Mage::getSingleton(‘checkout/session’)->getQuote();
$billing = $checkout->getBillingAddress();
echo $billing->getName() . $billing->getStreet(1) . $billing->getPostcode() . $billing->getCity() . $billing->getCountry();
?>
<?php
$customerId=Mage::getSingleton(‘customer/session’)->getCustomer()->getId();
$customer = Mage::getModel(‘customer/customer’)->load($customerId);
$defaultBilling = $customer->getDefaultBillingAddress();
$defaultBilling>getData(‘country_id’)
?>
<?php
$customerId=Mage::getSingleton(‘customer/session’)->getCustomer()->getId();
$customer = Mage::getModel(‘customer/customer’)->load($customerId);
$defaultShipping = $customer->getDefaultShippingAddress();
$defaultShipping->getData(‘country_id’)
?>
$customerId=Mage::getSingleton(‘customer/session’)->getCustomer()->getId();
Comment the below given line in enterprise_wishlist.xml
<!–action method=”addLinkBlock”><blockName>wishlist_link</blockName></action–>
Add the below given code in customer.xml
<block type=”checkout/cart_sidebar” name=”cart_sidebar” as=”topCart” template=”checkout/cart/sidebar.phtml” />
Use “<remove name=”sale.reorder.sidebar”></remove>” in customer.xml file.