Originally Posted by DrByte Oops. I should have checked for 'blank' as well. Change this: Code: if ($left == '<td></td>') { to this: Code: if ($left == '' || $left == '<td></td>') { Thanks - worked perfect. Just have to figure out why the option comes up as not found in the cart once you add it.
if ($left == '<td></td>') {
if ($left == '' || $left == '<td></td>') {
Forum Rules