如何在线显示总用户OpenCart 2.0x

时间:2015-04-23 03:00:18

标签: opencart2.x

我是新人, 我想在线显示有多少用户(客户和访客)。我所能找到的只是商业扩展,它适用于旧版本。

有人能指出正确的方向吗?

1 个答案:

答案 0 :(得分:0)

编辑2:

添加此功能 opencart22 \目录\模型\目录\ category.php

  public function getTotalCustomersOnline($data = array()) {
    $sql = "SELECT COUNT(*) AS total FROM `" . DB_PREFIX . "customer_online`";
    $query = $this->db->query($sql);
    return $query->row['total'];
  }

并添加代码 \ opencart22 \目录\控制器\共同\的header.php

    $customer_total = $this->model_catalog_category->getTotalCustomersOnline();
echo "Customer Online".$customer_total;

编辑1 Opencart已经具有显示在线访客/客户的功能(在管理员仪表板上)

您可以编辑代码并在您的网站上显示

enter image description here

告诉我你是否理解