如何在Checkout页面的Shipping方法下面添加评论框

时间:2014-06-11 09:52:53

标签: magento

我想在Checkout页面中添加一个评论框并在提货方式下面提交按钮。

在哪个文件中,我必须编辑代码?

1 个答案:

答案 0 :(得分:1)

步骤: - 1 将自定义字段添加到前端单页签出的“帐单地址”选项卡中。

app\design\frontend\[Package_name]\[Theme_name]\template\checkout\onepage\payment\methods.phtml

添加以下代码:

<li class="wide">
<label for="shipnew"><?php echo $this->__('New field') ?></label>
<div class="input-box">
<input type="text" id="shipnew" name="shipnew" value="" title="<?php echo $this->__('Ship Title') ?>" class="input-text" />
</div>
</li>

然后按照:

http://excellencemagentoblog.com/magento-add-custom-fields-checkout-page