Title: Wise Analytics
Author: Marcin
Published: <strong>21 ພຶດສະພາ 2024</strong>
Last modified: 25 ມັງກອນ 2026

---

ຄົ້ນຫາປລັກອິນ

![](https://ps.w.org/wise-analytics/assets/banner-772x250.png?rev=3090167)

![](https://ps.w.org/wise-analytics/assets/icon-256x256.png?rev=3090167)

# Wise Analytics

 ໂດຍ [Marcin](https://profiles.wordpress.org/marcinlawrowski/)

[ດາວໂຫຼດ](https://downloads.wordpress.org/plugin/wise-analytics.1.1.20.zip)

 * [ລາຍລອຽດ](https://lo.wordpress.org/plugins/wise-analytics/#description)
 * [ການຣີວິວ](https://lo.wordpress.org/plugins/wise-analytics/#reviews)
 *  [ການຕິດຕັ້ງ](https://lo.wordpress.org/plugins/wise-analytics/#installation)
 * [ການພັດທະນາ](https://lo.wordpress.org/plugins/wise-analytics/#developers)

 [ການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/wise-analytics/)

## ຄຳອະທິບາຍ

**Wise Analytics** is a fully fledged site statistics plugin that helps to track
the behavior of visitors, measure the traffic sources and actions taken on your 
website. The plugin provides a platform to analyze the traffic visualized as tables
and charts. It is easy to set up and configure. Our development team is constantly
working on new features and supporting the existing ones.

We believe that the statistics should be neither collected nor processed outside
your server. With Wise Analytics you can have such level of privacy. Then you may
learn your visitors and improve your site or business to earn more.

**[Read More](https://kainex.pl/projects/wp-plugins/wise-analytics?utm_source=wiseanalytics-page&utm_medium=lead&utm_campaign=readme)**

**[Source code on GitHub](https://github.com/marcin-lawrowski/wise-analytics)**

#### List of features:

 * Tracking visitors, visits, the behaviour, page views and other actions
 * Integration with Contact Form 7 (a visitor sends a form -> Wise Analytics recognizes
   all future actions of the visitor -> all actions are then assigned to e-mail 
   address of the visitor)
 * Tracking traffic sources (Referral, Social Networks, Search Engines, Direct, 
   Paid Traffic)
 * Detecting devices, languages, screens
 * Visitors behaviour: pages stats, entry pages, exit pages
 * Hourly visits in visitors’ local time
 * Tracking WordPress log-in event
 * Visitor profile page (name, e-mail, language, screen size, device, last visit,
   hourly activity, full actions log, etc.)
 * Top visited pages
 * Full visitors table with average visit time
 * Filtering by dates range

## ພາບໜ້າຈໍ

 * [[
 * Main Page
 * [[
 * Top Pages, Recent Visitors, Last events
 * [[
 * Visitors table
 * [[
 * Visitor detailed page
 * [[
 * Traffic sources overview
 * [[
 * Organic visits
 * [[
 * Referral visits
 * [[
 * Channels
 * [[
 * Devices
 * [[
 * Hourly stats
 * [[
 * Pages report

## ການຕິດຕັ້ງ

#### Requirements:

 * PHP >= 7.4.0

#### Plugin installation:

 1. Upload the entire wise-analytics folder to the plugins directory (usually `/wp-
    content/plugins/`) of WordPress instance.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. Traffic tracking will start just after the activation
 4. Check the statistics on Dashboard -> Analytics page

#### Post Installation Notices:

 * After installation go to Settings -> Wise Analytics Settings page for detailed
   configuration and configure visitors mapping

## ຄຳຖາມທີ່ພົບເລື້ອຍ

### How to add more details to visitors (e.g. e-mail address, name, city, etc.) ?

By default, visitors in Wise Analytics are described by ID number and a list of 
actions (called events) they performed on your site only.
 If you want to add more
details to the current visitor execute the following PHP code somewhere in your 
logic:

    ```
    if (class_exists('\Kainex\WiseAnalytics\Container', false)) {
       $visitorsService = \Kainex\WiseAnalytics\Container::getInstance()->get(\Kainex\WiseAnalytics\Services\Users\VisitorsService::class);
       $visitor = $visitorsService->getOrCreate();
       $visitor->setFirstName("Jerry");
       $visitor->setLastName("Smith");
       $visitor->setEmail("jerry@example.pl");
       $visitorsService->save($visitor);
    }
    ```

Next time you check Wise Analytics stats browser this visitor will be displayed 
as Jerry rather than Visitor #12345

### How to register a conversion?

When a visitor does something significant on your site you may register a conversion
event in your code.
 Then the conversion is visible in the stats browser.

    ```
    if (class_exists("\Kainex\WiseAnalytics\Container", false)) {
      $visitors = \Kainex\WiseAnalytics\Container::getInstance()->get(\Kainex\WiseAnalytics\Services\Users\VisitorsService::class);
      $events = \Kainex\WiseAnalytics\Container::getInstance()->get(\Kainex\WiseAnalytics\Services\Events\EventsService::class);

      $visitor = $visitors->getOrCreate();
      $visitor->setFirstName("John");
      $visitor->setEmail("john@myshop.com");
      $visitors->save($visitor);

      $events->createEvent(
        $visitor,
         "conversion", [
         "uri" => \Kainex\WiseAnalytics\Utils\URLUtils::getCurrentURL(),
         "ip" => \Kainex\WiseAnalytics\Utils\IPUtils::getIpAddress(),
         "order.id" => 123456,
         "order.id.public" => "order_123456",
         "order.amount" => 19900
        ]
      );
    }
    ```

### How to tell Wise Analytics to add more details to visitors after they put more details (e.g. e-mail address) in other plugins?

Imagine you have a contact form on your site. A visitor fills in the form and sends
a message.
 Together with the message they usually provide more details like a name,
e-mail address, phone number, company name, etc. Those details may be intercepted
by Wise Analytics and then presented on a visitor’s profile page in the stats browser.
This way you will learn more about your visitors: how often they come back, what
exactly they do on your site, etc.

Go to Settings -> Wise Analytics -> Visitors and map all detected contact forms.
Currently, we support Contact Form 7 plugin only. Once a visitor submits a form 
it is the recognized in Wise Analytics by name or e-mail (depending on mapping).

## ການຣີວິວ

![](https://secure.gravatar.com/avatar/e9fbd101fe11070221e281c3a2b68291a6efa3f447d1493d24a93fd291877e83?
s=60&d=retro&r=g)

### 󠀁[Detailed analytics and free plugin](https://wordpress.org/support/topic/detailed-analytics-and-free-plugin/)󠁿

 [zepolo](https://profiles.wordpress.org/zepolo/) 26 ມີນາ 2026

Very good plugin. Complete and well-organized data. Works on our website where other
plugins don’t works. Minimal adjustments, works right out of the box. Good tool 
for analytics

![](https://secure.gravatar.com/avatar/6f0a1c74d3d08d6ca2af8dabd7a11c54ec0bfda2fa55f90cc092b60041a01841?
s=60&d=retro&r=g)

### 󠀁[Simple and clear!](https://wordpress.org/support/topic/simple-and-clear-22/)󠁿

 [przemyslawk](https://profiles.wordpress.org/przemyslawk/) 17 ກຸມພາ 2026

Good plugin for tracking users and keeping the stats privately

![](https://secure.gravatar.com/avatar/ecb15bbd8557b217e4886f9c2eed025974996d2e044cdd06264402f79ce8f91a?
s=60&d=retro&r=g)

### 󠀁[Really good plugin](https://wordpress.org/support/topic/really-good-plugin-259/)󠁿

 [jennlaw](https://profiles.wordpress.org/jennlaw/) 1 ພະຈິກ 2024

Easy to install and browse my own stats. A lot of reports, tables and charts. No
need to install other software

 [ ອ່ານການຣີວິວທັງໝົດ 3 ລາຍການ ](https://wordpress.org/support/plugin/wise-analytics/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ ແລະ ຜູ້ພັດທະນາ

“Wise Analytics” ແມ່ນຊອຟແວໂອເພັນຊອດ (Open Source). ບຸກຄົນຕໍ່ໄປນີ້ໄດ້ມີສ່ວນຮ່ວມໃນ
ການພັດທະນາປລັກອິນນີ້.

ຜູ້ຮ່ວມພັດທະນາ

 *   [ Marcin ](https://profiles.wordpress.org/marcinlawrowski/)

[ແປ “Wise Analytics” ເປັນພາສາຂອງເຈົ້າ.](https://translate.wordpress.org/projects/wp-plugins/wise-analytics)

### ສົນໃຈຮ່ວມພັດທະນາບໍ່?

[ເບິ່ງລະຫັດ](https://plugins.trac.wordpress.org/browser/wise-analytics/), ກວດເບິ່ງ
[ຄັງເກັບ SVN](https://plugins.svn.wordpress.org/wise-analytics/), ຫຼື ຕິດຕາມ [ບັນທຶກການພັດທະນາ](https://plugins.trac.wordpress.org/log/wise-analytics/)
ຜ່ານ [RSS](https://plugins.trac.wordpress.org/log/wise-analytics/?limit=100&mode=stop_on_copy&format=rss).

## ບັນທຶກການປ່ຽນແປງ

#### 1.1.20

 * Added source column to visitors table
 * Fixed: security issue

#### 1.1.9

 * Added engagements stats

#### 1.1.8

 * Events page
 * Added period switching (daily, weekly, monthly) in lead line chart

#### 1.1.7

 * Lead line chart comparison option
 * Conversion event type

#### 1.1.6

 * External links tracking

#### 1.1.5

 * Entry pages report
 * Exit pages report

#### 1.1.4

 * Added pages views report
 * Many minor adjustments

#### 1.1.3

 * Added hourly stats
 * Improved backend sessions processing

#### 1.1.2

 * Added average time line chart
 * Added screens table

#### 1.1.1

 * Recognizing paid traffic
 * Traffic source daily chart with comparison to other metrics
 * SocialNetworks table
 * Channels table

#### 1.1

 * Added: social networks pie chart
 * Added: organic search pie chart
 * Added: referrals table

#### 1.0

Initial version

## ຂໍ້ມູນກຳກັບ (Meta)

 *  ເວີຊັນ **1.1.20**
 *  ອັບເດດຫຼ້າສຸດເມື່ອ **2 ເດືອນ ທີ່ຜ່ານມາ** ທີ່ຜ່ານມາ
 *  ການຕິດຕັ້ງທີ່ໃຊ້ງານຢູ່ **40+**
 *  ເວີຊັນ WordPress ** 6.2.0 ຫຼື ສູງກວ່າ **
 *  ທົດສອບເຖິງເວີຊັນ **6.9.4**
 *  ເວີຊັນ PHP ** 7.4.0 ຫຼື ສູງກວ່າ **
 *  ພາສາ
 * [English (US)](https://wordpress.org/plugins/wise-analytics/)
 * ແທັກ
 * [analytics](https://lo.wordpress.org/plugins/tags/analytics/)[statistics](https://lo.wordpress.org/plugins/tags/statistics/)
   [stats](https://lo.wordpress.org/plugins/tags/stats/)[tracking](https://lo.wordpress.org/plugins/tags/tracking/)
   [traffic](https://lo.wordpress.org/plugins/tags/traffic/)
 *  [ມຸມມອງຂັ້ນສູງ](https://lo.wordpress.org/plugins/wise-analytics/advanced/)

## ການໃຫ້ຄະແນນ

 5 ຈາກທັງໝົດ 5 ດາວ.

 *  [  ການວິຈານ 5 ດາວ ຈຳນວນ 3 ລາຍການ     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=5)
 *  [  ການວິຈານ 4 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=4)
 *  [  ການວິຈານ 3 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=3)
 *  [  ການວິຈານ 2 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=2)
 *  [  ການວິຈານ 1 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=1)

[ເພີ່ມຄຳຄິດເຫັນຂອງຂ້ອຍ](https://wordpress.org/support/plugin/wise-analytics/reviews/#new-post)

[ເບິ່ງ ຄຳຄິດເຫັນ ທັງໝົດ](https://wordpress.org/support/plugin/wise-analytics/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ

 *   [ Marcin ](https://profiles.wordpress.org/marcinlawrowski/)

## ການຊ່ວຍເຫຼືອ

ບັນຫາທີ່ໄດ້ຮັບການແກ້ໄຂໃນສອງເດືອນຜ່ານມາ:

     1 ຈາກ 1

 [ເບິ່ງຟໍຣັມການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/wise-analytics/)

## ບໍລິຈາກ

ເຈົ້າຕ້ອງການສະໜັບສະໜູນການພັດທະນາຂອງປລັກອິນນີ້ບໍ່?

 [ ບໍລິຈາກໃຫ້ປລັກອິນນີ້ ](https://kainex.pl/projects/wp-plugins/wise-analytics/wise-analytics-donate?utm_source=wiseanalytics-page&utm_medium=lead&utm_campaign=readme)