|  | Order form
|
Original Message | Order form Author frank luna on 01-23-2001 at 16:59 (EST) | When ever someone enters info into my oder_template page, all the data stays written to the text file and reappears when the next customer hits my site.Is there anyway to clear this info between users?
|
|
| Messages In This Discussion |
1. RE: Order form Author Bill Weiner on 01-24-2001 at 05:50 (EST) | | The ability to "remember customer information" is a new feature added to version 3.3. It works by setting a cookie on the customer's browser with the customer's billing/shipping address. Cookies are stored on each individual's browser... so no user will get someone elses billing/shipping address. It is just specific to each user... with the order forms being clear the first time a customer buys something from you... and the order forms being automatically initialized the next time the same customer buys something from you (so they don't have to continuously enter all of their information each time they purchase something from you).
This new feature, by default, is always on... however, if you really want to turn it off, then you can do so by opening the "ushop-lib.pl" file (with any TEXT editor) and changing the following line (which is located at the very top of that file) from:
$remember_customer = "YES";
to
$remember_customer = "NO";
But again, there is no worry about other customer's seeing previous customer's address information because cookies are stored on each individual's browser.
|
|
|
|