0

Magento:onepagecheckout,停留在计费信息上

这是我们得到的回应:

当我查看@ http://baleinen.com/checkout/onepage/中的代码时,我找不到一个名为 shipping-method 的块。

任何想法如何解决?(这是 Sentana 模板,我几乎无法想象这以前没有用过)

{"goto_section":"shipping_method","update_section":{"name":"shipping-method","html":"    <dl class=\"sp-methods\">
<dt>Betaal en verzendkosten (PostNL)<\/dt>
<dd>
<ul>
<li>
<span class=\"no-display\"><input name=\"shipping_method\" type=\"radio\" value=\"flatrate_flatrate\" id=\"s_method_flatrate_flatrate\" checked=\"checked\" \/><\/span>
<label for=\"s_method_flatrate_flatrate\">NL                                                                        <span class=\"price\">\u20ac\u00a01,25<\/span>                                                <\/label>
<\/li>
<\/ul>
<\/dd>
<\/dl>
<script type=\"text\/javascript\">
\/\/<![CDATA[
var shippingCodePrice = {'flatrate_flatrate':1.25};

$$('input[type=\"radio\"][name=\"shipping_method\"]').each(function(el){
Event.observe(el, 'click', function(){
if (el.checked == true) {
var getShippingCode = el.getValue();
var newPrice = shippingCodePrice[getShippingCode];
if (!lastPrice) {
lastPrice = newPrice;
quoteBaseGrandTotal += newPrice;
}
if (newPrice != lastPrice) {
quoteBaseGrandTotal += (newPrice-lastPrice);
lastPrice = newPrice;
}
checkQuoteBaseGrandTotal = quoteBaseGrandTotal;
return false;
}
});
});
\/\/]]>
<\/script>
"},"allow_sections":["shipping"],"duplicateBillingInfo":"true"}

http://baleinen.com/checkout/onepage/

4

2 回答 2

2

我遇到了 OnePage Checkout 未完成的类似问题。

我必须进行以下更改:

app/design/frontend/base/default/template/checkout/onepage/payment.phtml

找到以下部分:

<form action="" id="co-payment-form">
    <fieldset>
        <?php echo $this->getChildHtml('methods') ?>
    </fieldset>
</form>

并向 fieldset 元素添加一个 id:

<form action="" id="co-payment-form">
   <fieldset id="checkout-payment-method-load">
        <?php echo $this->getChildHtml('methods') ?>
    </fieldset>
</form>

现在我的结帐进行正常。

于 2013-12-26T23:37:44.380 回答
1

问题是 Magento JS 试图找到 col-right,但实际上并没有。

这是 col-left 并报告为一个小缺陷,因为它是我在 JS 中硬编码的

于 2012-09-12T17:41:13.230 回答