我正在使用这个 magento 扩展http://www.magentocommerce.com/magento-connect/custom-attributes-4340.html来创建客户属性。我能够创建属性并在后端查看它。但是当用户通过前端登录时,我无法编辑/更新这些值。
这是我在 edit.phtml 页面上的代码。
<li><?php $attribute = Mage::getModel('eav/config')->getAttribute('customer','height'); ?>
<label for="height"><?=$this->__('Height') ?></label>
<div class="input-box">
<input type="text" name="height" id="height" />
</div>
</li>
我没有手动向我的数据库添加任何内容或创建任何模块。严格使用这个扩展。任何帮助将非常感激。