Did anyone get the attribute name to display in the GC shopping cart?
Currently the attribute name shows as ' - '.
I tried playing with the code but wasn't able to fix it.
I think the problem lies at
gcheckout.php Line 128:
Code:
while (list($option, $value) = each($products[$i]['attributes'])) {
$products_name .= "\n" .'- ' .
$products[$i][$option]['products_options_name'] . ' ' .
$products[$i][$option]['products_options_values_name'] . '';
}
It's going through the while loop but the values seem to be NULL.
I'm running it on ZC 1.3.5.
Bookmarks