How to change hello from My Dashboard in Magento?
This is very simple change.Please follow below step:
Please go to below file:
\app\design\frontend\<Your_Theme>\template\customer\account\dashboard\hello.phtml
You will get line:28
Change from:
<h2><?php echo $this->__(‘hello,%s!’, $this->htmlEscape($this->getCustomerName())) ?></h2>
Change to:
<h2><?php echo $this->__(‘WelCome %s!’, $this->htmlEscape($this->getCustomerName())) ?></h2>
// You can change with your suitable string like “Welcome” or others
Hope it will work.