Difference between revisions of "Cart-to-do"
From Wiki at Neela Nurseries
(Created page with " the changes we need to apply to put the cart into normal sale mode are: * enable guest checkout * enable existing customer accounts * enable new account creatio...") |
m |
||
Line 12: | Line 12: | ||
* enable existing customer accounts . . . execute one SQL statement at MYSQL command line interface | * enable existing customer accounts . . . execute one SQL statement at MYSQL command line interface | ||
* enable new account creation . . . remove a symlink and copy a file in Opencart's 'catalog/controller/{account, checkout}' directories (two symlinks total, and two files) | * enable new account creation . . . remove a symlink and copy a file in Opencart's 'catalog/controller/{account, checkout}' directories (two symlinks total, and two files) | ||
+ | |||
+ | |||
+ | Actually files to enable/disable account creation are located on a longer path: | ||
+ | |||
+ | ./catalog/view/theme/default/template/checkout/register-disabled.tpl | ||
+ | ./catalog/view/theme/default/template/account/register-disabled.tpl | ||
+ | |||
+ | And here is a file we should check whether it functions as name implies: | ||
+ | |||
+ | ./catalog/view/theme/default/template/product/product--cart-add-disabled-for-qty-zero.tpl |
Latest revision as of 05:56, 28 July 2018
the changes we need to apply to put the cart into normal sale mode are:
* enable guest checkout * enable existing customer accounts * enable new account creation
These changes require the following actions:
* enable guest checkout . . . select one radio button under Settings -> Stores -> ASI Store -> Options and save * enable existing customer accounts . . . execute one SQL statement at MYSQL command line interface * enable new account creation . . . remove a symlink and copy a file in Opencart's 'catalog/controller/{account, checkout}' directories (two symlinks total, and two files)
Actually files to enable/disable account creation are located on a longer path:
./catalog/view/theme/default/template/checkout/register-disabled.tpl ./catalog/view/theme/default/template/account/register-disabled.tpl
And here is a file we should check whether it functions as name implies:
./catalog/view/theme/default/template/product/product--cart-add-disabled-for-qty-zero.tpl