Showing posts with label Get product custom option value. Show all posts
Showing posts with label Get product custom option value. Show all posts

Thursday, 10 December 2015

How to get custom option values in Magento?

If you want custom options value in magento. Then

You can try following code.




<?php
             
          $customoptions = $item->getProductOptions();
                 
           foreach($customoptions ['options'] as $key=>$valuecb)
             {

               echo $valuecb['label'];

              echo $valuecb['option_value'];

  }
}


?>