在Magento中计费和发货的国家/地区数量不同

时间:2012-07-19 07:06:34

标签: magento

我想在结算地址中显示一些发货地址和其他国家/地区的国家/地区。 我已按照here提供的建议。但在执行此操作后,我的州/省输入框未显示。 像这样 - >

enter image description here

1 个答案:

答案 0 :(得分:0)

查看第78行ish in(path_to_magento)\ app \ design \ frontend \ default(my_skin_name)\ template \ checkout \ onepage \ shipping.phtml

它应该是这样的。也许你删了一些东西 -

   <div class="field">
                        <label for="shipping:region" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
                        <div class="input-box">
                            <select id="shipping:region_id" name="shipping[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
                                <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
                            </select>
                            <script type="text/javascript">
                            //<![CDATA[
                                $('shipping:region_id').setAttribute('defaultValue',  "<?php echo $this->getAddress()->getRegionId() ?>");
                            //]]>
                            </script>
                            <input type="text" id="shipping:region" name="shipping[region]" value="<?php echo $this->htmlEscape($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text" style="display:none;" />
                        </div>
                    </div>