Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 OpenCart v.1.4.9.3并尝试将客户的传真号码放入确认电子邮件中。我尝试将以下内容放入order_confirm.tpl模板中,但无济于事:
1.4.9.3
order_confirm.tpl
Fax <strong><?php echo $customer_fax; ?></strong><br />
我需要修改控制器吗?我还是 OpenCart 的新手。
您将需要实际编辑模型以及您已经完成的编辑
/catalog/model/checkout/order.php
寻找
$template->data['customer_telephone'] = $order_query->row['telephone'];
放了之后
$template->data['customer_fax'] = $order_query->row['fax'];