<?php
$checkout = Mage::getSingleton(‘checkout/session’)->getQuote();
$billing = $checkout->getBillingAddress();
echo $billing->getName() . $billing->getStreet(1) . $billing->getPostcode() . $billing->getCity() . $billing->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.
Comment the below given code in reward.xml
<!–customer_account>
<block type=”enterprise_reward/customer_account” name=”enterprise.reward.customer.account” />
</customer_account–>
Use “<remove name=”catalog.compare.sidebar”/>” in layout xml file
Edit the function _prepareLayout in the page app/code/core/Mage/Review/Block/View.php