如何在Magento 1客户地址中添加新的自定义字段

时间:2017-09-17 08:10:37

标签: php magento onestepcheckout

我们已经尝试过这个answer 这对客户编辑表格有用了, 但现在问题是,

我们使用了magestore onestepcheckout,

我们也添加了

<li>
                <div class="one-field">
                    <input onkeyup="validateElement(this.id)" type="text"
                               title="<?php echo Mage::helper('core')->quoteEscape($this->__('Govt ID')) ?>"
                               name="billing[govt_id]" id="billing:govt_id"
                               value="380051"
                               class="input-text"
                               required/>
                    <span class="highlight"></span>
                    <span class="bar"></span>
                    <label class="required" for="billing:govt_id"><?php echo $this->__('Govt ID') ?> <em>*</em></label>
                </div>
            </li>

另外,我们补充说,

'govt_id' => Mage::helper('onestepcheckout')->__('Govt Id'),
<{1}}页

中的

但是,知道这个新添加的position.php的结算时间没有被保存。

1 个答案:

答案 0 :(得分:0)

要添加新地址字段,您需要创建新的扩展名。

此处,在客户地址中添加Govt Id的分步指南:http://excellencemagentoblog.com/blog/2011/11/29/magento-adding-custom-field-to-customer-address/

希望它可以帮助你:)