我正在使用 OpenCart 2.0,并且尝试在用户登录时在类别页面上显示用户电子邮件。我相信下面的代码可以在success.tpl 上显示用户电子邮件。如何在类别页面上显示它?谢谢你的时间。
在:/catalog/controller/product/category.php
我有这个:
$this->load->model('account/order');
$order = $this->model_account_order->getOrder($this->session->data['order_id']);
if($order) {
$this->data['email'] = $order['email'];
}
然后在:/catalog/view/theme/default/template/category.tpl
我有这个:
<?php if(!empty($email)) echo $email; ?>