How to get Current Customer Group id in Magento.?
With the following code one can easily get the specific Current customer group id with logged in or session information.
/* Check if customer is logged in */
$isLogIn = Mage::getSingleton('customer/session')->isLogIn();
/* If customer is logged in */
if($isLogIn) :
/* Get the logged in customer's group ID */
$customerGroupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
}else{
$customerGroupId = "";
}