I'm using gv_faq.php and cant remove the: 'Please enter redemption code' and the input box. I have removed gift certificates from the order totals module.
Any ideas? thanks
I'm using gv_faq.php and cant remove the: 'Please enter redemption code' and the input box. I have removed gift certificates from the order totals module.
Any ideas? thanks
Try removing ot_discount in Admin - Modules - Order Totals
its already removed the only things installed are ot_shipping, subtotal, total and tax.
solved by removing this code
<!--
<form action="<?php echo zen_href_link(FILENAME_GV_REDEEM, '', 'NONSSL', false); ?>" method="get">
<?php echo zen_draw_hidden_field('main_page',FILENAME_GV_REDEEM) . zen_draw_hidden_field('goback','true') . zen_hide_session_id(); ?>
<fieldset>
<legend><?php echo TEXT_GV_REDEEM_INFO; ?></legend>
<label class="inputLabel" for="lookup-gv-redeem"><?php echo TEXT_GV_REDEEM_ID; ?></label>
<?php echo zen_draw_input_field('gv_no', $_GET['gv_no'], 'size="18" id="lookup-gv-redeem"');?>
</fieldset>
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_REDEEM, BUTTON_REDEEM_ALT); ?></div>
</form>
from tpl_gv_faq_default.php
thanks