I create a module, I put a menu on admin.
Ok, on the page I put this code:
$productscollects = Mage::getModel('catalog/product')->getCollection();
foreach ($productscollects as $productscollect) {
//$attribute = $productscollect->getResource()->getAttribute('alto');
echo $productscollect->getSku();
echo "-". $productscollect->getAncho();
echo "-". $productscollect->getAlto
echo "-". $productscollect->getRin();
}
so, it's easy, but the problem is not show the Alto,Ancho and Rin. the sku is working fine.
also, i try with $productscollect->getData("rin"); it is same, not show.
What is wrong?
On the front end is working fine.
Thanks!!