Hi,
I set a customer as "Pending Approval - May browse with prices but may not buy"
This did not work as the customer was able to log in and purchase products.
Is this a bug or is there a setting I am missing or what?
Thanks
Rick
Hi,
I set a customer as "Pending Approval - May browse with prices but may not buy"
This did not work as the customer was able to log in and purchase products.
Is this a bug or is there a setting I am missing or what?
Thanks
Rick
The "pending" status is only enforced if you have site-wide requirement for authorization on all users.
Admin->Configuration->Customer Details->Customer Approval Status - Authorization Pending
It seems like you want option 3 instead of the default 0:
Customer Approval Status - Authorization Pending
Customer must be Authorized to shop
0= Not required (default)
1= Must be Authorized to Browse
2= May browse but no prices unless Authorized
3= Customer May Browse and May see Prices but Must be Authorized to Buy
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
I do not want to have to authorize every new customer as we receive 50-100 per day.
Is there anyway to disallow a customer from purchasing products short of deleting their account?
Thanks
Rick
The simplest way to do that as of v1.3.7 is to set the switch to 3 as shown above, and then make this small coding change:
/includes/modules/create_account.php
around line 256:change to:Code:'customers_authorization' => (int)CUSTOMERS_APPROVAL_AUTHORIZATIONand save as an override to /includes/modules/YOURTEMPLATENAME/create_account.phpCode:'customers_authorization' => 0
Now new accounts will be auto-authorized, and customers whom you've manually de-authorized will be prevented from completing purchases.
v1.3.8, when released, will have more flexibility built-in, but the above will work for now.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.