Magento 1 how to get custom option values in cart or order page from quote
When customer select custom option from product and click add to cart then magento save these values in quote object. So you can get easily from quote object by loading anywhere in application. If you are on cart or checkout page on frontend then you can get cart object from session. Mage::helper(“checkout/session”)->getCart()->getQuote(); If you want… Read More »