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.

how can I redirect the user to a specific category after adding a product to cart ?

I use Magento 1.4.1.1

Thanks for help.

share|improve this question

1 Answer

up vote 2 down vote accepted

There no way to do this with out small programming effort. The simplest way i can think of is to use return_url parameter for "add to cart" form. Edit catalog/product/view/addtocart.phtml template by adding there hidden field like this

<input type="hidden" name="return_url" value="http://google.com" />

after button tag. In result after adding product to cart you will be redirected to pointed site.

Hope this will help you.

share|improve this answer

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.