8

我的 OpenCart 环境中有另一个页面,比如说关于我们的页面,它在下面有这些表单,假设用户在他们的购物车中有物品,这些表单应该可以工作,但它们不能:

在此处输入您的优惠券代码:

<form action="index.php?route=checkout/cart" method="post" enctype="multipart/form-data" id="basket">
    <input type="text" value="" id="coupon" name="coupon"/>
    <input type="hidden" value="coupon" name="next"/>
    <input type="submit" class="button" value="Apply Coupon"/>
</form>

在此处输入您的礼券代码:

<form action="index.php?route=checkout/cart" method="post" enctype="multipart/form-data" id="basket">
    <input type="text" value="" name="voucher"/>
    <input type="hidden" value="voucher" name="next"/>
    <input type="submit" class="button" value="Apply Voucher"/>
</form>

这是用于优惠券代码系统但它不起作用(此代码默认未编辑):

/catalog/controller/checkout/cart.php

// VOUCHER
// IF THE USER HAS ENTERED A VOUCHER
if (isset($this->request->post['voucher']) && $this->request->post['voucher']) {
    foreach ($this->request->post['voucher'] as $key) {
        if (isset($this->session->data['vouchers'][$key])) {
            unset($this->session->data['vouchers'][$key]);
        }
    }
}
4

2 回答 2

3

优惠券/代金券/运费

这三个系统块是 OpenCart 中的模块。它们循环在一起,您可以编辑文件,例如使一些空白或使用if/else语句仅显示某些模块。

您不能在 中调用表单本身cart.tpl,它必须是:

<div class="right"> 
    <!-- eVoucher System -->
    <?php foreach ($modules as $module) { ?>
        <?=$module?>
    <?php } ?>
    <!-- eVoucher System --> 
</div>

Shipping/Voucher 和 Coupon 模块的文件位置

这将循环并显示模块 tpl 文件、运输、优惠券和凭证。它们的位置很奇怪

/catalog/view/theme/default/total/coupon.tpl
/catalog/view/theme/default/total/shipping.tpl
/catalog/view/theme/default/total/voucher.tpl

我们没有全部使用它们,所以我们已经取消了凭证和运输。优惠券形式如下:

<div>
  <div class="cart-heading"><?php echo $heading_title; ?></div>
  <div class="cart-content" id="coupon"><?php echo $entry_coupon; ?>&nbsp;
    <input type="text" name="coupon" value="<?php echo $coupon; ?>" />
    &nbsp;<a id="button-coupon" class="button"><span><?php echo $button_coupon; ?></span></a></div>
</div>
<script type="text/javascript">
<!--
//
//  jQuery dependent based on .post so make sure
//  your footer or header jQuery call is before this
//
$('#button-coupon').bind('click', function() {
    $.ajax({
        type: 'POST',
        url: 'index.php?route=total/coupon/calculate',
        data: $('#coupon :input'),
        dataType: 'json',       
        beforeSend: function() {
            $('.success, .warning').remove();
            $('#button-coupon').attr('disabled', true);
            $('#button-coupon').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
        },
        complete: function() {
            $('#button-coupon').attr('disabled', false);
            $('.wait').remove();
        },      
        success: function(json) {
            if (json['error']) {
                $('#basket').before('<div class="warning">' + json['error'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');
            }

            if (json['redirect']) {
                location = json['redirect'];
            }
        }
    });
});
//-->
</script>

这就是这些文件的方式和位置,total还有一个控制器,coupon并且所有其他模块都是控制器和标准 MVC 驱动的。

外部优惠券购物车表格

因此,对于如您所愿在外部页面上使用,提取 tpl 文件和$modulesand$module循环,代码应该是:

(在 SEO URI 的情况下确保“斜线”index.php)

当然,例如,在您的关于我们页面上:

<strong>Please enter your coupon:</strong>

<form action="/index.php?route=total/coupon/calculate" method="post" enctype="multipart/form-data" id="basket">
    <input type="text" value="" id="coupon" name="coupon"/>
    <input type="hidden" value="coupon" name="next"/>
    <input type="submit" class="button" value="Apply Coupon"/>
</form>
于 2012-09-13T11:13:25.867 回答
0

我试过把这些表格放在一个页面上,它们对我有用。输入优惠券/优惠券代码会将我带到结帐页面,这些代码已经为我准备好了。

于 2012-09-07T19:09:52.087 回答