如题,那个页面?首页找到,购物车里也没找到,checkout_shipping?还是checkout_payment?还是哪个页面?谢谢

解决方案 »

  1.   

    checkout_payment页面使用的优惠券,问下谁能贴下代码,那块是和优惠券相关的
      

  2.   


    <!-- Begin of Discount Coupon -->
    <?php
      $selection =  $order_total_modules->credit_selection();
      if (sizeof($selection)>0) {
        for ($i=0, $n=sizeof($selection); $i<$n; $i++) {
          if ($_GET['credit_class_error_code'] == $selection[$i]['id']) {
    ?>
    <div class="messageStackError"><?php echo zen_output_string_protected($_GET['credit_class_error']); ?></div><?php
          }
          for ($j=0, $n2=sizeof($selection[$i]['fields']); $j<$n2; $j++) {
    ?>
    <fieldset>
    <legend><?php echo $selection[$i]['module']; ?></legend>
    <?php echo $selection[$i]['redeem_instructions']; ?>
    <div class="gvBal larger"><?php echo $selection[$i]['checkbox']; ?></div>
    <label class="inputLabel"<?php echo ($selection[$i]['fields'][$j]['tag']) ? ' for="'.$selection[$i]['fields'][$j]['tag'].'"': ''; ?>><?php echo $selection[$i]['fields'][$j]['title']; ?></label>
    <?php echo $selection[$i]['fields'][$j]['field']; ?>
    </fieldset>
    <?php
          }
        }
    ?>
    <?php
        }
    ?>
    <!-- End of Discount Coupon -->自己找一下吧,我的购物流程被我改过了。