Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i m adding products from external site using /path/to/app/checkout/cart/add?product=[id]&qty=[qty]

eg. Product Gift1 it comes to shopping cart grid but i m just adding not proceeding to checkout .

when next time i m login and adding some other product like Gift2 it adding and same time last one GIFT1 also appearing in that grid.

how can i display last item GIFT2 only in the shopping cart page. ? i dont need multi product functionality in magento.

share|improve this question
Magento administration and operations questions are not on-topic on the Stack Exchange network. – Kev Aug 23 '11 at 16:31

closed as off topic by Kev Aug 23 '11 at 16:31

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

You would need to write an observer that will execute when a product is added to cart. In this observer you will have to add some code to clear all other items from the cart before the new one is added. This way you will only see the last added product in your cart.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.