I tried
function fresh_media_uc_product_add_to_cart_form($form_state, $node = array() {
unset($form['qty']['#title']);
$form['qty']['#default_value'] = '0';
$output .= drupal_render($form);
return $output;
}
someone mentioned that it's not being called. has anyone found a way around this?


