yeah, I had to uninstall and re-install for it to fire. Okay, I added a server validation to the page, but I don't understand how to plug in the code you sent. Here's what I have now:
<?php
if (isset($_POST["CheckoutWizard_submit"]) || isset($_POST["CheckoutWizard_submit_x"])) {
$WAFV_Redirect = "";
$_SESSION['WAVT_checkout_712_Errors'] = "";
if ($WAFV_Redirect == "") {
$WAFV_Redirect = $_SERVER["PHP_SELF"];
}
$WAFV_Errors = "";
$WAFV_Errors .= WAValidateRQ(((isset($_POST["Address_1"]))?$_POST["Address_1"]:"") . "",false,1);
if ($WAFV_Errors != "") {
PostResult($WAFV_Redirect,$WAFV_Errors,"checkout_712");
}
}
?>