Opis
A simple plugin to add the Piwik PRO container (with tracking code) to your WordPress site, making it easy to collect visitor data from any WordPress site and automatically track ecommerce in your WooCommerce store. You’ll also be able to manage consents and run tags after using this plugin.
What is Piwik PRO?
Piwik PRO is a privacy-first platform that offers the advanced analytics features while allowing for full control of data. It provides flexible reports and data collection in addition to consent management, tag management and a customer data platform.
Analytics
Collect data across websites, apps, digital products and post-login areas. Customize how data is collected and analyze it with built-in audience, behavior, acquisition and conversion reports. Dive deeper with custom reports and access to raw data.
Tag Manager
Add flexible tags to your analytics stack without hiring an IT team to do it. Quickly create, test and deploy tags from templates or with custom code. Coordinate tag behavior with Analytics, Customer Data Platform and Consent Manager to fit any data collection approach.
Customer Data Platform
Build customer profiles, segment audiences and create insightful single customer views. Quickly populate the profiles using data collected with the help of Analytics and Tag Manager. Set up Consent Manager so data is only collected data when there is specific consent for it.
Consent Manager
Manage consents and data subject requests in the same platform where data is collected and processed. Categorize data from Analytics and Tag Manager so that the data collected always agrees with the consent received.
Instalacija
From your WordPress Dashboard
- Go to Plugins > Add New.
- Search for Piwik PRO.
- Click Install now.
- Click Activate.
From WordPress.org
- Download Piwik PRO plugin.
- Upload the piwik-pro directory to your
/wp-content/plugins/
directory using ftp, sftp, scp or other method. - In your WordPress admin panel, go to Plugins.
- Look for the Piwik PRO plugin and click Activate.
Once Activated
- Go to Settings > Piwik PRO.
- Type in the Container address (URL).
- Type in your Site ID. Where to find it?
- Leave Basic container (async) checked. This container holds your tracking code and is used to handle most tags.
- Check Additional container (sync) if you want to add the container for sync tags.
- Optionally rename the Data layer.
- Click Save changes.
Multisite
The plugin can be activated and used for just about any use case.
- Activate at the site level to load the plugin on that site only.
- Activate at the network level for full integration with all sites in your network.
ČPP
-
Plugin is not working on my site
-
Make sure your WordPress theme has the
wp_body_open()
function right after the opening<body>
tag, otherwise the container won’t work. -
What’s the difference between the containers?
-
- Basic container (async): This container holds your tracking code and is used to handle most tags.
- Additional container (sync): Add this container if you want to use sync tags. It loads tags before the page content loads.
-
WooCommerce: Does this plugin automatically track ecommerce?
-
Yes, this plugin automatically tracks events like ecommerce orders and abandoned carts, which result in full ecommerce reporting in Piwik PRO. To see the collected data, just turn on ecommerce reports in:
Piwik PRO > Menu > Administration > Reports > Show ecommerce reports.
-
When should I rename the data layer?
-
Rename the data layer if you use other software with data layers. If the names are the same, the software can interfere with each other.
To check if your data layer name is not used by other software on your site, follow these steps:- In the console on your site, run this command:
!window.hasOwnProperty("customDataLayer");
replacingcustomDataLayer
with your custom name. - If this command returns
true
, then you can safely use your custom name.
- In the console on your site, run this command:
-
How to support the Content Security Policy mechanism?
-
Content Security Policy restricts third-party tools from loading codes on the website and allows to fetch only approved origins of content. To support Content Security Policy mechanism, you need to add a
nonce
value as an attribute to containers and scripts that these containers load.To add a
nonce
value add to afunction.php
file in yours theme the following code:add_filter( 'piwik_pro_nonce', function() { return wp_create_nonce( time() ); } );
For more information, read our article about Content Security Policy.
Recenzije
Suradnici i Programeri
“Piwik PRO” je softver otvorenog koda. Sljedeće osobe su doprinijele ovom dodatku.
Suradnici“Piwik PRO” je prijeveden na 1 dijalekt. Zahvala prevodiocima za njihov doprinos.
Prevedite “Piwik PRO” na svoj jezik.
Zainteresirani ste za razvoj?
Pregledajte kôd, pogledajte SVN spremišteili se pretplatite na dnevnik razvoja od RSS.
Dnevnik promjena
1.2.1
Release date: 06.02.2023
- Fix: Fixed settings page.
1.2.0
Release date: 06.02.2023
- Add: Added support for
getTrackingSource()
Piwik PRO’s event. - Add: Added support for
trackEcommerceCartUpdate()
andtrackEcommerceOrder()
Piwik PRO’s events forWooCommerce
plugin. - Fix: Remove
piwik_pro
option in every site in multisite installation during uninstallation.
1.1.1
Release date: 06.10.2022
- Test: Tested up to WordPress 6.0
1.1.0
Release date: 05.08.2021
- Fix: Removed fallback to display async snippet in footer if
wp_body_open()
function is don’t implemented in the theme. - Add: Added
piwik_pro_nonce
filter to enable passingnonce
variable to scripts. - Add: Added
nonce
variable todataLayer
to enable in sync scripts usage. - Fix: Changed snippets rendering from files to inline scripts.
- Fix: Updated screenshot file.
1.0.2
Release date: 28.04.2021
- Fix: Removed
delete_option()
fromdeactivation()
.
1.0.1
Release date: 19.04.2021
- Fix: Site ID validation.
1.0.0
Release date: 16.04.2021
- First stable version of the plugin.