composer require johannschopplich/kirby-live-preview
composer update johannschopplich/kirby-live-preview
Download the latest version v2.4.1 and extract it to your site/plugins folder. If updating, replace the existing plugin folder with the new one.
July 11, 2025
๐ Bug Fixes
site/plugins/ could fail due to missing autoloader configuration. The plugin now works correctly regardless of installation method.June 24, 2025
๐ Features
May 2, 2025
๐ Bug Fixes
<head> tag is missing in your page template. Live Preview requires a <head> tag to inject the necessary JavaScript for real-time updates. Previously, templates without a <head> tag would fail silently. The error message now clearly indicates which template needs to be fixed.April 6, 2025
๐ Bug Fixes
April 4, 2025
๐ Bug Fixes
April 2, 2025
๐ Features

January 24, 2025
๐ Bug Fixes
site.yml), changes were not reflected in the preview until saved. Now, site-level content updates in real-time just like page-level content.January 20, 2025
๐ Features
pageId section property lets you preview a different page than the one being edited. This is useful for previewing how site-level changes affect a specific page, or for previewing template pages from a settings panel.December 20, 2024
Kirby Live Preview v2 is a major release with full support for Kirby 5. This major release requires a new license key. If you already have a license, you receive either a free upgrade to v2 or a 50% discount on your new license. Head over to the Kirby Tools Hub to get your discount or read more in the license compatibility guide.
๐ Features
November 15, 2024
๐ Features
updateStrategy to control the preview update behavior. If set to blur, the preview is updated when any Kirby text-like, number-like, or blocks field loses focus.To change the default strategy from interval to blur, set the updateStrategy property in your blueprint:
type: preview
updateStrategy: blur
June 18, 2024
๐ Features
March 25, 2024
๐ Features
updateInterval option or disable it completely.๐ Bug Fixes
Cmd + S now works correctly when the focus is on the preview frame.March 24, 2024
๐ Features
writer fields to redirect links to the corresponding Panel page.data-preview-mode attribute in CSS and JavaScript:[data-preview-mode] .cookie-banner {
display: none;
}
const isPreviewMode = document.documentElement.dataset.previewMode === "true";
previewMode content key:$isPreviewMode = $page->previewMode()->isTrue();
March 22, 2024
Initial Release
Kirby Live Preview v1.0 brings real-time content preview directly into the Kirby Panel. See your changes rendered instantly as you edit, without switching between the Panel and your website.
๐ Features
type: preview. Works with pages and site blueprints.updateInterval option.For setup instructions, see the Getting Started guide.