我在magento中有一个页面结帐site,在选择和选项“发送到此地址”时,它保留在同一个标签上,而不是转到发货方式标签。我如何解决这个问题,这个错误发生在java脚本或代码中?谁能帮我? 以下是我在onepage checkout中为一个页面编辑添加服务的详细信息:
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;"> Priority Service</input><br /><input type="radio" value="4" name="sevicepack" style="width:13px;"> 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;"> Priority Service</input><br /><input type="radio" value="4" name="sevicepack" style="width:13px;"> Road Express Service</input>
</div>
</li>
答案 0 :(得分:0)
如果你在magento 1.8上运行
试试这个。
转至/ app / design / frontend / base / default / template / checkout / onepage / file payment.phtml 打开它,第36行
<fieldset>
<?php echo $this->getChildHtml('methods') ?>
</fieldset>
将id添加到fieldset
<fieldset id="checkout-payment-method-load">
<?php echo $this->getChildHtml('methods') ?>
</fieldset>