Magento签出页-添加自定义字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento签出页-添加自定义字段相关的知识,希望对你有一定的参考价值。

In this blog, we will see how to add custom fields to magento onepage checkout steps.
This method can be used to add custom field to any step in the checkout page, although in the current blog i have demonstrated how to add it to the billing step. This method will work on all magento versions.
  1. <li class="fields">
  2. <div class="field">
  3. <label for="billing:ssn" class="required"><em>*</em><?php echo $this->__('SSN') ?></label>
  4. <div class="input-box">
  5. <input type="text" name="custom[ssn]" value="<?php echo $this->htmlEscape($this->getQuote()->getSsn()) ?>" title="<?php echo $this->__('SSN') ?>" class="input-text required-entry" id="billing:ssn" />
  6. </div>
  7. </div>
  8.  
  9. </li>

以上是关于Magento签出页-添加自定义字段的主要内容,如果未能解决你的问题,请参考以下文章

向 Magento 的订阅模块添加自定义字段

如何在 Magento 中添加自定义字段来订购?

Magento-将自定义字段添加到客户配置文件

从 magento 的自定义模块中添加 sales_flat_order_item 表中的新字段

Magento在admin中将自定义输入字段添加到客户帐户窗体

使用自定义文本将项目添加到 Magento 购物车