Magento自定义客户属性在前端不可见

时间:2014-05-28 11:21:47

标签: php magento magento-1.8

我创建了一个模块来为客户注册和其他表单添加自定义属性。它在后端可见,但在前端不可见。我想在前端的所有表单上显示它。

我在这个链接中使用它: http://www.silksoftware.com/magento-module-creator/

1 个答案:

答案 0 :(得分:1)

只需将字段添加到register.phtml模板中,如:

<div class="input-box">
       <input type="text" name="driver_license_number" id="driver_license_number" value="" title="<?php echo $this->__('Driver License Number') ?>" class="input-text"/>
  </div>

只需注意名称,名称必须与属性代码相同。