-1

我在 magento 中有一个站点的一页结帐,并且在选择并选择“运送到此地址”时,它仍保留在同一选项卡上,而不是移动到运输方式选项卡。我该如何解决这个问题,这个错误是发生在java脚本还是代码中?谁能帮我?这是我为 onepage 编辑的用于在 onepage 结帐中添加服务的详细信息:

i Have edited the /app/design/frontend/base/default/template/checkout/onepage/shipping.phtml as
        <li class="fields">
                    <div class="field">
                 <label for="servicepack">Services:</label>
                     <div class="input-box">
                     <input type="radio" value="3" name="sevicepack" style="width:13px;">&nbsp;&nbsp;&nbsp;&nbsp;Priority Service</input><br /><input type="radio" value="4" name="sevicepack" style="width:13px;">&nbsp;&nbsp;&nbsp;&nbsp;Road Express Service</input>

                    </div>
                    </li>
addedd this field and also   edited  /app/design/frontend/default/theme495/template/persistent/checkout/onepage/billing.phtml
       <li class="fields">
                    <div class="field">
                 <label for="servicepack">Services:</label>
                     <div class="input-box">
                     <input type="radio" value="3" name="sevicepack" style="width:13px;">&nbsp;&nbsp;&nbsp;&nbsp;Priority Service</input><br /><input type="radio" value="4" name="sevicepack" style="width:13px;">&nbsp;&nbsp;&nbsp;&nbsp;Road Express Service</input>
                    </div>
                    </li>
4

1 回答 1

0

如果您在 magento 1.8 上运行

尝试这个。

转到 /app/design/frontend/base/default/template/checkout/onepage/ 文件 payment.phtml 打开它,第 36 行

<fieldset>
        <?php echo $this->getChildHtml('methods') ?>
</fieldset>

将 id 添加到字段集

<fieldset id="checkout-payment-method-load">
        <?php echo $this->getChildHtml('methods') ?>
</fieldset>
于 2014-05-07T05:06:06.330 回答