Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The prices of our website depend on a webservice that get the prices from an external database. Sometimes this process fails and set the product price to '0'.

I want to design an observer that stops the adding to cart process of this product.

I know how to «observe» the event with the checkout_cart_product_add_after (the 'before' one seems to not work at all) observer. What I don't know is how to stop the adding to cart process.

With this observer I can check the product ID and then remove it from the cart. But this is executed before the product is added, so unless the consumer adds the product again, it's useless. How can I then stop the process?

Thank

share|improve this question
The checkout_cart_add_product_complete observer doesn't work either, it seems to act before the product is on the cart. – PauGNU Nov 11 '11 at 13:18
OK. I've just found out that it's easier than I thought. The checkout_cart_product_add_after observer is acting before the product is added to the cart. So I just need to check the product price and redirect the customer to the product page. – PauGNU Nov 11 '11 at 13:39

1 Answer

up vote 1 down vote accepted

throw an exception in your observer's method:

Mage::throwException(Mage::helper('yourmodule')->__('An error has ocurred.'));

HTH

share|improve this answer
Hey, thanks OSdave :) I finally work that out. I didn't know that the exception would stop the process. – PauGNU Nov 14 '11 at 15:40
you're welcome Pau, you should accept the answer if it answered your question, and you should do it for your other questions too – OSdave Nov 15 '11 at 9:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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