Cartweaver Community Forums




Click on Join Now to Sign Up
2. In CWIncOrderForm.php remove/replace -
· Lines 55-60
· Lines 172-191 replace with
<input name="cstUsername" id="cstUsername" type="hidden" value="NA">
<input name="cstPassword" id="cstPassword" type="hidden" value="NA">
<input name="cstPasswordConfirm" id="cstPasswordConfirm" type="hidden" value="NA">
3. In CWIncValidateOrderForm.php remove or comment out -
· Lines 63-66
· Lines 82-117
This is the last line of my CWIncValidateOrderForm.php
if(checkBlank($_POST["cstShpZip"]))
{$cartweaver->setCWError("CST_SHPZIP_ERROR","Zip or Postal
Code");}
}
// END SHIP SAME
?>
This is the code I eneded up with on CWIncOrderForm.php
<tr class="altRowOdd" >
<td
align="right"><?php $cartweaver->displayError("EmailAddress","CST_EMAIL_ERROR");?></td>
<td><input
name="cstEmail" id="cstEmail" type="text"
value="<?php echo($cstEmail);?>">
* </td>
</tr>
<tr class="altRowEven"
>
<input
name="cstUsername" id="cstUsername" type="hidden"
value="NA">
<input name="cstPassword" id="cstPassword"
type="hidden" value="NA">
<input name="cstPasswordConfirm" id="cstPasswordConfirm"
type="hidden" value="NA">
</tr>
<?php
if(!isset($_SESSION["ShowShippingInfo"]) ||
$_SESSION["ShowShippingInfo"] == 'True') { ?>
<tr >
<th
colspan="2"><strong>Shipping
Address</strong></th>

