Вы должны расширить Mage_Checkout_Block_Success
и добавить метод, подобный следующему:
public function getOrder()
{
return Mage::getModel('sales/order')->load($this->getLastOrderId());
}
и в своем шаблоне success.phtml:
$order = $this->getOrder();
foreach($order->getAllItems() as $item){
//$item is your product object and you can do what you want with this;
}