Javascript – convert type

Convert variable to boolean var booleanValue = Boolean(variableValue); Converting to String var stringValue = String(variableValue); Converting to Number var numberValue = Number(variableValue); Parsing to Number…

Magento get customer group Id and group name

Get customer group Id // Check if costomer is logged in if(Mage::getSingleton(‘customer/session’)->isLoggedIn()) { // Get group Id $groupId = Mage::getSingleton(‘customer/session’)->getCustomerGroupId(); } Get group name: $group…