1
votes

I am Again here with my learning problem in magento. I created a field in for my products Catalog/Attributes/Manage Attributes. Now I want to display this Field with the product Information. When I use This Code

$_product = new Mage_Catalog_Model_Product();
$_product->load($product->getId());
echo "<pre>"; print_r($_product->getDelivery());exit;

I am able to print other values like name by writing this :

 echo "<pre>"; print_r($_product->getName());exit;

Can anyone tell me how can I print those attributes that i have added manually through Admin interface..

1

1 Answers

1
votes

you can try and see what's inside

echo "<pre>"; print_r($_product->getData());exit;