I had a custom module built but my programmer has stopped communicating and I'm stuck without help. I paid in advance.

For the life of me, I can't figure out how to edit this form. There is a blank where a color should be.

http://pre-wrap.com/index.php?main_page=quick_order

I found this form: class.athletic_tape.php which seems to call the product ids for the table, but when I edit it, the color still doesn't show up. This form appears twice - in the includes->templates->my_template folder and in the includes->classes->observers folder


class athleticTape extends base
{
function athleticTape()
{
global $zco_notifier;
$zco_notifier->attach($this, array('NOTIFY_HEADER_START_PRODUCT_INFO'));
}

function update(&$class, $eventID, $paramsArray) {
$products_id = (int)$_GET['products_id'];
$products_id_array = array(30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42);
if (in_array($products_id, $products_id_array)) {
// redirect to quick order page
zen_redirect(zen_href_link(FILENAME_QUICK_ORDER, '', 'NONSSL'));
}
}
}


30, 31, 32, etc. are the product ids for the athletic tape. I figured if I changed or added 43, which is the missing color's id to the list it should work...but no luck.

Any help would be greatly appreciated.