Reputation: 2461
I need to disable the product page within Magento. So even if someone tried to visit the page it would give a 404.
Any ideas how I would go about that?
Thank you
** Edit ** I should point out that I still need the product to be visible on the list page etc I just don't want customers to be able to visit the products page.
Upvotes: 1
Views: 2897
Reputation: 2435
You can set the product as disabled in Magento Admin panel. (Product status attribute)
UPD: You should overwrite the viewAction
method from the Mage_Catalog_ProductController
. The body of this method should consist of only one string: $this->_forward('noRoute'); return;
Upvotes: 1