Remove the Payment Requirement
By default, SalesCart collects payment information for each order. However, if the product you offer is completely free or if your shopping cart does not need payment information, you can totally remove this step as following:
- Open you website design tool.
- Locate and double-click on the file payment1.php in the sc-bin folder.
- Select the html tab or code-view tab to make your changes. Locate the 39th line from the top:
|
<meta HTTP-EQUIV="Refresh" CONTENT="0; URL=payment2.php">
|
- This line tells SalesCart where to go next. Highlight the text
|
<meta HTTP-EQUIV="Refresh" CONTENT="0; URL=payment2.php">
|
- Change the next location to URL=confirm1.php. You may change this line back at a later time if you wish to add shipping options back. When done, the line should look like this:
|
<meta HTTP-EQUIV="Refresh" CONTENT="0; URL=confirm1.php">
|
- If you remove the payment step and you have a customer enabled, you will need to modify the customer sendemail.php file to specify a different email address. In the sendemail.php file find the following line:
|
$toaddress = $row->email; //email to address
|
- To specify the ship-to email address, change it to:
|
$toaddress = $row->shipemail; //email to address
|