我在 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;"> 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>