Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable magento online sales functionality?

Tags:

php

mysql

magento

I am implementing Magento Community edition and want to disable the "add to cart" functionality temporarily until i am prepared to proceed with online orders.

I wanted to use Magento without checkout and add to cart functionality.

Please advice. SIA

like image 320
SIA Avatar asked May 15 '10 14:05

SIA


2 Answers

The add to cart buttons are all held in their own file in template/catalog/product/view/addtocart.phtml. You could replace the buttons with a temporary message.

You can disable the onepage checkout in the configuration (System >> Configuration >> Sales >> Checkout >> Checkout Options >> Disable Onepage Checkout). I've just tested this, however, and Google Checkout remains, so it's not a solid solution.

like image 73
Nick Avatar answered Oct 16 '22 08:10

Nick


You could set the minimum order amount to 10million (or whatever) in the sales config - so when someone adds something to their cart you can have a custom message telling them the site is in test mode or whatever

like image 40
lphmedia Avatar answered Oct 16 '22 08:10

lphmedia