I've created a attribute-set called pdmset1 and pdmset2 where pdmset1 is a YES/NO attribute and pdmset2 a date.
I echo both by the following php-code
echo "PDMSET1: " . Mage::getModel('catalog/product')->load($_product->getId())->getAttributeText('pdmset1')
echo "PDMSET2: Mage::getModel('catalog/product')->load($_product->getId())->getAttributeText('pdmset2')
Output is the following:
>> PDMSET1: YES
>> PDMSET2:
So it seems to me PDMSET2 is empty or so. Can somebody explain to me what I do wrong and even better what to do so I get the correct date for PDMSET2