if(Mage::getSingleton('customer/session')->isLoggedIn()):
<?php
$roleId = Mage::getSingleton('customer/session')->getCustomerGroupId();
$role = Mage::getSingleton('customer/group')->load($roleId)->getData('customer_group_code');
$role = strtolower($role);
if($role == 'internal') {
echo 'Hello internal...';
}
?>
O saber només el grup del client
<?php
$roleId = Mage::getSingleton('customer/session')->getCustomerGroupId();
?>
<p>
<?php if($roleId == 4): ?>
PVP recomendado <?php echo $this->getPriceHtml($_product) ?>
<?php else: ?>
<?php echo $this->getPriceHtml($_product) ?>
<?php endif; ?>
</p>