サイトの magento で 1 ページのチェックアウトがあり、[この住所に発送] オプションを選択すると、配送方法タブに移動するのではなく、同じタブに残ります。この問題を解決するにはどうすればよいですか。このエラーは Java スクリプトまたはコードで発生していますか? 誰でも私を助けることができますか?ワンページチェックアウトでサービスを追加するためにワンページ用に編集した詳細は次のとおりです。
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>