Ahmet Bora 3 Plugins GitHub Featured return [ 'afbora.kirby-minify-html' => [ 'enabled' => true, 'options' => [...] ] ]; Minify HTML Enable minify HTML output for Kirby 3 and 4. Kirby 4 plugins // hook 'page.product.update:after' => function () { // your code goes here } Template hooks Template hooks allow you to manage hooks for page and file templates more easily. DX Kirby 3 plugins return [ 'afbora.loader.roots' => [ '/plugins/core', '/plugins/payment', '/plugins/shipping', ] ]; Plugin Loader With Kirby Loader you can load plugins from multiple roots. Thus, you can simplify the management of your plugins by grouping. DX Plugin Development