opencart 2.3.0.2需要添加直接结账而不是加入购物车

Need to add direct checkout instead of adding to the cart in opencart 2.3.0.2

来自opencart的原始代码:-

var cart = {
    'add': function(product_id, quantity) {
        $.ajax({
            url: 'index.php?route=checkout/cart/add',
            type: 'post',
            data: 'product_id=' + product_id + '&quantity=' + (typeof(quantity) != 'undefined' ? quantity : 1),
            dataType: 'json',
            beforeSend: function() {
                $('#cart > button').button('loading');
            },
            complete: function() {
                $('#cart > button').button('reset');
            },
            success: function(json) {
                $('.alert, .text-danger').remove();

                if (json['redirect']) {
                    location = json['redirect'];
                }

                if (json['success']) {
$('#content').parent().before('<div class="alert alert-success"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">&times;</button></div>');

                    // Need to set timeout otherwise it wont update the total
                    setTimeout(function () {
                        $('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
                    }, 100);

                    $('html, body').animate({ scrollTop: 0 }, 'slow');

                    $('#cart > ul').load('index.php?route=common/cart/info ul li');
                }
            },
            error: function(xhr, ajaxOptions, thrownError) {
                alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
            }
        });
    },

我试着用这些方式编辑,但它对前端没有影响,一切都是一样的 检查下面我尝试在这里替换代码:-

    var cart = {
        'add': function(product_id, quantity) {
            $.ajax({
                url: 'index.php?route=checkout/cart/add',
                type: 'post',
                data: 'product_id=' + product_id + '&quantity=' + (typeof(quantity) != 'undefined' ? quantity : 1),
                dataType: 'json',
                beforeSend: function() {
                    $('#cart > button').button('loading');
                },
                complete: function() {
                    $('#cart > button').button('reset');
                },
                success: function(json) {
                    $('.alert, .text-danger').remove();

                    if (json['redirect']) {
                        location = json['redirect'];
                    }
           //here i replaced the code
                    if (json['success']) {
                    window.location='index.php?route=checkout/checkout';
                    }
                },
                error: function(xhr, ajaxOptions, thrownError) {
                    alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
                }
            });
        },

谁能帮我解决这些 opencart 2.3.0.2 问题..??

用下面的代码替换您已经更改的重定向功能

window.location='index.php?route=checkout/checkout';

使用此代码,这将重定向到您的结帐。

location.href='index.php?route=checkout/checkout';

这应该有效,我在 2.3.0.2 上,并且有多家商店在成功声明中使用它在单击“添加到购物车”后重定向到购物车页面。

  window.location.href = "index.php?route=checkout/cart"; 

显然您想将其更改为:

  window.location.href = "index.php?route=checkout/checkout";

祝你好运!