Magento – Show Same Product as Separate in Cart

cartmagento-1.9qty

I have products with different custom options. When a same product with same custom options is added to cart twice, it appears in the cart as 2 X qty
Please refer the image
enter image description here

I want to display it as separate product. Please refer the below image.

enter image description here

How can I do it. Please help.

Best Answer

Try this:

Copy the file app/code/core/Mage/Sales/Model/Quote/Item.php to app/code/local/Mage/Sales/Model/Quote/Item.php

Set the return as false in function representProduct()

Related Topic