0

我正在向 Magento Onepage Checkout 添加一个部分,在遇到许多问题后,我返回并删除了所有模块和所有附加到它们的文件。我回到结帐,现在一切正常,除了“继续”按钮在我登录时卡在计费部分。我相信它已连接到onclick="billing.save()内联函数。我我是 Magento 的新手,也是 Stack Overflow 的新手,所以这是我的billing.phtml代码。如果需要更多信息,或者我是否错过了这篇文章中的一些细节,请告诉我。我很想学习如何在StackOverflow 以充分利用该站点。

*****
    <div class="buttons-set" id="billing-buttons-container">
        <p class="required"><?php echo $this->__('* Required Fields') ?></p>
        <button type="button" title="<?php echo $this->__('Continue') ?>" class="button" onclick="billing.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
        <span class="please-wait" id="billing-please-wait" style="display:none;">
            <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
        </span>
    </div>

*****
<script type="text/javascript">
//<![CDATA[
    var billing = new Billing('co-billing-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveBilling') ?>');
    var billingForm = new VarienForm('co-billing-form');

    //billingForm.setElementsRelation('billing:country_id', 'billing:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
    $('billing-address-select') && billing.newAddress(!$('billing-address-select').value);

    var billingRegionUpdater = new RegionUpdater('billing:country_id', 'billing:region', 'billing:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'billing:postcode');
//]]>
</script>

任何帮助深表感谢。提前致谢!

4

1 回答 1

0

对我来说,我只需转到系统->配置->运输方法,然后将统一运费运输方法是更改​​为否,然后将否更改为是,然后保存配置。在此结帐计费步骤之后工作正常。

于 2017-05-02T06:06:00.457 回答