Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Coupons by Ingo Problem with IE 8.0


Mounaco Shop

Recommended Posts

Hi,

 

the last contrib doesnt working with the actual update of Internet explorer 8.0 . Does anybody here know why. At the checkout_payment the user is not able to proceed because the "Continue" button is without any function. I solved the prob after disabling the Coupon contrib.

 

Anyone have an idea??

 

Thx

Link to comment
Share on other sites

Hi,

 

the last contrib doesnt working with the actual update of Internet explorer 8.0 . Does anybody here know why. At the checkout_payment the user is not able to proceed because the "Continue" button is without any function. I solved the prob after disabling the Coupon contrib.

 

Anyone have an idea??

 

Thx

1 paste code of includes/boxes/coupon_payment.php here i have modified mine so much i need a default one

2 is the coupon enter box above or below the continue button?

Link to comment
Share on other sites

1 paste code of includes/boxes/coupon_payment.php here i have modified mine so much i need a default one

2 is the coupon enter box above or below the continue button?

 

1.)

The code code includes/boxes/coupon_payment.php

 

if (defined('MODULE_ORDER_TOTAL_COUPON_SORT_ORDER') && MODULE_ORDER_TOTAL_COUPON_SORT_ORDER>0) {

?>

<!-- coupons by ingo //-->

<tr>

<td>

<?php

$info_box_contents = array();

$info_box_contents[] = array('text' => COUPON_BOX_HEADING);

// new infoBoxHeading($info_box_contents, false, false);

$info_box_contents = array();

if ($coupon_code_code=='') {

$info_box_contents[] = array('text' => (($coupon_code_message!='')? $coupon_code_message . '<br>':''));

$info_box_contents[] = array('form' => tep_draw_form('coupon', tep_href_link(basename($PHP_SELF), '', $request_type, false), 'post'),

'text' => COUPON_BOX_PLEASE_ENTER.' '.tep_draw_input_field('coupon_code', '', 'style="margin:1px"') .

tep_hide_session_id() . '<br>');

} else {

$info_box_contents[] = array('align' => 'center', 'text' => (($coupon_code_message!='')? $coupon_code_message:COUPON_BOX_CODE_ACTIVE) . '<br>' . COUPON_BOX_VALUE . ': ' . $currencies->format($coupon_code_value));

}

new infoBox($info_box_contents);

?>

</td>

</tr>

<!-- coupons by ingo eof //-->

<?php

}

?>

 

 

2.) The Coupon enter box is above the continue button. I had to change it, in the beginning it was below.

Link to comment
Share on other sites

  • 3 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...