Skip to content

Magento : Get Product Custom Options Data

it took me couple hours to figured this out,

here we go!!, mangstabhhh

 

$prod = Mage::getModel(‘catalog/product’)->load(1243);

foreach($prod->getOptions() as $kunci=>$nilai)
{
echo $nilai->getId().” | “.$nilai->getTitle().'<br>’;
}

 

Share

One Comment

Leave a Reply to Anonymous Cancel reply

Your email address will not be published. Required fields are marked *