我正在向模板customer/form/edit.phtml添加一個字段。我用這個代碼:將字段添加到Magento中的編輯帳戶表單
<li>
<?php
$attribute = Mage::getModel('eav/config')->getAttribute('customer','code_magique');
?>
<label for="code_magique" class="<?php if($attribute->getIsRequired() == true){?>required<?php } ?>"><?php if($attribute->getIsRequired() == true){?><em>*</em><?php } ?><?php echo $this->__('Code') ?></label>
<div class="input-box">
<input type="text" name="code_magique" id="code_magique" value="<?php echo $this->htmlEscape($this->getCustomer()->getData("code_magique")) ?>" title="<?php echo $this->__('Code') ?>" class="input-text" />
</div>
</li>
這顯示的字段與我「code_magique」屬性中,但是當我試圖修改此屬性,它不工作,我有沒有忘了什麼東西?
magento帳戶儀表板的哪一部分是您添加此輸入? – srgb
「帳戶信息」一個 – user2323222