Thursday, 30 June 2011

Get Customer GroupId in Magento

firstly you need to check if customer is loged in or not
$logged_in = Mage::getSingleton( 'customer/session' )->isLoggedIn();
now use the code below to check CustomerGroupID
$group = Mage::getSingleton('customer/session')->getCustomerGroupId();

No comments:

Post a Comment