https://github.com/pixel-open/kirby-plausible
This bundle allows you to integrate Plausible analytics statistics into the Kirby CMS administration interface via an embedded iframe.
https://github.com/pixel-open/kirby-plausible
kirby-plugin plausible-analytics
Last synced: 11 months ago
JSON representation
This bundle allows you to integrate Plausible analytics statistics into the Kirby CMS administration interface via an embedded iframe.
- Host: GitHub
- URL: https://github.com/pixel-open/kirby-plausible
- Owner: Pixel-Open
- Created: 2023-09-29T08:05:04.000Z (over 2 years ago)
- Default Branch: develop
- Last Pushed: 2025-06-29T15:38:26.000Z (11 months ago)
- Last Synced: 2025-06-29T16:37:19.049Z (11 months ago)
- Topics: kirby-plugin, plausible-analytics
- Language: Vue
- Homepage:
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelogs.md
Awesome Lists containing this project
README
Plausible Bundle for Kirby CMS
This bundle allows you to integrate Plausible analytics statistics into the Kirby CMS administration interface via an embedded iframe.
[](https://php.net/)
[](https://getkirby.com/)
[](https://github.com/Pixel-Open/kirby-plausible/releases)

This plugin take a lot of inspiration on this plugin: https://github.com/floriankarsten/kirby-plausible
## Commercial Usage
This plugin is free
## Installation
### Download
[Download the files](https://github.com/Pixel-Open/kirby-plausible/releases/tag/1.0.2.zip) and place them inside `site/plugins/kirby-plausible`.
### Composer
```
composer require pixelopen/kirby-plausible
```
### Git Submodule
You can add the plugin as a Git submodule.
$ cd your/project/root
$ git submodule add https://github.com/Pixel-Open/kirby-plausible.git site/plugins/kirby-plausible
$ git submodule update --init --recursive
$ git commit -am "Add Kirby plausible plugin"
Run these commands to update the plugin:
$ cd your/project/root
$ git submodule foreach git checkout master
$ git submodule foreach git pull
$ git commit -am "Update submodules"
$ git submodule update --init --recursive
## Options
You need to add the url of your website plausible.io page with the following line in your `/site/config/config.php`:
```php
return [
'pixelopen.plausible' => [
'plausibleLink' => 'https://plausible.io/share/your.website?auth=yourAuthID',
],
];
```
You can change the height of the iframe (default = 2000) with the following line in your `/site/config/config.php`:
```php
return [
'pixelopen.plausible' => [
'height_iframe' => 'iframe_height_value',
],
];
```