2013-08-21 45 views
2

如何在magento客戶實體中創建中間名?Magento中間名需要

System->Configuration->Customer配置中有選項,但它是可選的。

回答

1

爲了讓您的中間名字段需要打開下列文件: /app/design/frontend/default/[YOURTHEME]/template/customer/widget/name.phtml

,或者如果它不存在還有,打開:

/app/design/frontend/base/default/template/customer/widget/name.phtml

查找以下代碼:

<input type="text" id="<?php echo $this->getFieldId('middlename')?>" name="<?php echo $this->getFieldName('middlename')?>" value="<?php echo $this->htmlEscape($this->getObject()->getMiddlename()) ?>" title="<?php echo $this->getStoreLabel('middlename') ?>" class="input-text" <?php echo $this->getFieldParams() ?> /> 

凡說類=「輸入文本」讓說類=「輸入文字需要進入」

<input type="text" id="<?php echo $this->getFieldId('middlename')?>" name="<?php echo $this->getFieldName('middlename')?>" value="<?php echo $this->htmlEscape($this->getObject()->getMiddlename()) ?>" title="<?php echo $this->getStoreLabel('middlename') ?>" class="input-text required-entry" <?php echo $this->getFieldParams() ?> /> 

這是朝行的末尾。查看文件中的其他代碼 - 它們都具有相同的類。