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



我们已经尝试了此答案,这一切都适合客户编辑表格,但是现在问题是

我们使用了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'),

position.php页面中

但是,知道该新添加的govt_id的计费时间虽然没有保存。

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

在这里,客户地址中添加添加 Govt Id的逐步指南:http://excellencemagentoblog.com/blog/2011/11/11/29/magento-adding-custom-custom-field-custom-field-customer-address//firc-P>

希望它对您有帮助:)

相关内容

  • 没有找到相关文章

最新更新