How can I retrieve only one product from a Magento collection?
I have a collection, which contains only one product. How I can get this product witho开发者_开发百科ut using a "foreach' cycle?
Use $collection->getFirstItem()
to retrieve the first item from a collection.
精彩评论