
內容簡介
Simplest Analytics 追蹤伺服器端的訪問次數和獨立用戶會話,並且不會設置第三方 cookie。也可以追蹤事件和 URL 參數。在安裝和啟用外掛之後,它可以在不需要進一步配置的情況下運作。如果想要設置自定義追蹤事件或 URL 參數,可以在 WordPress 後台使用設置選項卡。
為什麼要使用 Simplest Analytics?
它可以正常運作,沒有過多的功能。追蹤訪問次數、獨立用戶和自定義事件(如點擊等)。
外掛的主要功能是什麼?
追蹤頁面訪問次數和獨立用戶
追蹤網站流量
追蹤流量來源
追蹤 WooCommerce 銷售來源
追蹤用戶點擊元素的自定義事件
追蹤使用的 URL 參數,例如 your-site.com/?campaign=whatever
你可以使用的自定義函數來進一步追蹤事件
你可以使用以下函數在 PHP 鉤子中追蹤更多的事件,例如表單提交、套用優惠券、加入購物車等:
$data = [];
$data[‘track_type’] = “event”; // 事件或頁面檢視
$data[‘event_action’] = “your-event”; // 事件名稱
simple_analytics_track_data($data); // 保存事件的函數
管理儀表板中的圖表是如何生成的?
圖表是基於 google-charts.js 生成的,它只會在管理後台加載。數據存儲在安裝您的 WordPress 的同一個伺服器上的數據庫中。
外掛標籤
開發者團隊
原文外掛簡介
Simplest Analytics tracks visits and unique users session based serverside without setting 3rd party cookies. It is also possible to track events and url paramaters. After
installing and activation the plugin it’s working without further configuration. If you want to set up custom tracking events or url parameters you can use the settings tab in
the WordPress backend.
Why use Simplest Analytics?
It is working. No function overload. Track visits, unique users and custom events like clicks.
What are the main features of the plugin?
Track page visits and unique users
Track traffic on sites
Track where your traffic comes from
Track where your woocommerce sales come from
Track custom events when a user clicks an element
Track the use of url parameters like your-site.com/?campaign=whatever
Track video views (1sec, 25%, 50%, 75%, 100%)
Custom function you can use to track further events
You can use this function to track further events in php hooks like form submissions, apply coupons, add to cart, etc:
$data = [];
$data[‘track_type’] = “event”; // event or pageview
$data[‘event_action’] = “yourevent”; // name of the event
simple_analytics_track_data($data); // function that saves the event
How are the charts in the admin dashboard generated?
The charts are based on google-charts.js which only load in the admin backend. The data is stored in the database on the same server where your WordPress installation
is located.
