Jump to content



Latest News: (loading..)

- - - - -

Coupons by Ingo Problem with IE 8.0


This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1   Mounaco Shop

Mounaco Shop
  • Members
  • 3 posts

Posted 13 June 2009 - 12:21 PM

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

#2   steve_s

steve_s
  • Members
  • 1,580 posts

Posted 13 June 2009 - 01:45 PM

View PostMounaco Shop, on Jun 13 2009, 01:21 PM, said:

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?

#3   Mounaco Shop

Mounaco Shop
  • Members
  • 3 posts

Posted 14 June 2009 - 12:00 PM

View Poststeve_s, on Jun 13 2009, 03:45 PM, said:

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.'&nbsp;'.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.

#4   Mounaco Shop

Mounaco Shop
  • Members
  • 3 posts

Posted 25 September 2009 - 11:17 AM

Does any1 have an idea?