here are the code changes i needed to make to get this working:
product_details.php:
line 55:
$ParamProductID_WADAProducts = (get_magic_quotes_gpc()) ? $_GET['ProductID'] : addslashes($_GET['ProductID']);
changed to:
$paramItem_WADAOptions = (get_magic_quotes_gpc()) ? $_GET['ProductID'] : addslashes($_GET['ProductID']);
line 104:
$ATC_RedirectAfter = "";
changed to:
$ATC_RedirectAfter = "cart.php";
line 212:
<input type="hidden" name="eCart1_2_ID_Add" value="0" >
changed to:
<input type="hidden" name="eCart1_2_ID_Add" value="<?php echo $row_WADAProducts["ProductID"]; ?>" >
line 219:
<option value="<?php echo $row_WADAOptions['OptionGroupID']?>"><?php echo $row_WADAOptions['OptionGroupName']?></option>
changed to:
<option value="<?php echo $row_WADAOptions['OptionName']?>"><?php echo $row_WADAOptions['OptionName']?></option>
added just before doctype tag:
<?php
// WA eCart Redirect
if ($eCart1->redirStr != "") {
header("Location: ".$eCart1->redirStr);
}
?>
cart.php
changed line 237:
<td ><p><?php echo $eCart1->DisplayInfo("ProductOption"); ?></p></td>
to:
<td ><p><?php echo $eCart1->DisplayInfo("ProductOptions"); ?></p></td>