0
我需要在註冊頁面有一個新的下拉菜單,如Magento中的州/省。無論如何要複製這個並在數據庫中添加其他值嗎?Magento註冊頁面重複狀態下拉
謝謝
<div class="field">
<label for="region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
<div class="input-box">
<select id="region_id" name="region_id" title="<?php echo Mage::helper('core')->quoteEscape($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[
$('region_id').setAttribute('defaultValue', "<?php echo $this->getFormData()->getRegionId() ?>");
//]]>
</script>
<input type="text" id="region" name="region" value="<?php echo $this->escapeHtml($this->getRegion()) ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('State/Province')) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
</div>
</div>
什麼將有兩個下拉的解決方案? – Robert
嗨,謝謝,我知道我需要一個模塊,因爲我在這裏發佈,也許有人可以指向我在一個方向,我的問題是我如何可以使新的下拉狀態像省/省 – Robert
不是不是那個文件,我工作在這個文件app/design/frontend/base/default/template/persistent/customer/form/register.phtml中,因爲我啓用了持久性簽出,並且與您在UPDATE2中添加的內容幾乎相同。也許一個好主意是告訴我如何添加下拉菜單。 – Robert