HELP! I've tried posting this is the Gift Certificate forum but have not be able to resolve my problem. How do I remove the Gift Certificate Redemption Code (text and box) from the Payment Information page during CHECKOUT? I do not want my customers to be able to "Redeem" Gift Certifcates during CHECKOUT. I still want to "Apply Amount" and see "Available Balance."
Note: I do not want to turn off Gift Certificates entirely - my customers will still be able to redeem Gift Certificates
from the email link and Gift Certificates FAQ.
I seem to be able to remove the input box by commenting out the following line in ot_gv.php (under function credit_selection)
$selection = array('id' => $this->code,
'module' => $this->title,
'redeem_instructions' => MODULE_ORDER_TOTAL_GV_REDEEM_INSTRUCTIONS,
'checkbox' => $this->use_credit_amount(),
'fields' => array(array('title' => MODULE_ORDER_TOTAL_GV_TEXT_ENTER_CODE,
// 'field' => zen_draw_input_field('gv_redeem_code', '', 'id="disc-'.$this->code.'" onkeyup="submitFunction(0,0)"'),
'tag' => 'disc-'.$this->code
)));
}
return $selection;
But how do I remove the prompt for "Redemption Code"?


Reply With Quote
