biglotteryfund / preview-button
Adds a preview button to the entry editor screen to allow previewing of draft/revision entries
Installs: 3 929
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 2
Open Issues: 1
Type:craft-plugin
Requires
- craftcms/cms: ^3.0.0-RC1
This package is auto-updated.
Last update: 2025-06-12 03:42:09 UTC
README
Craft 3.2 saw the release of "headless preview" which effectively supersedes this plugin. Headless Preview is much more powerful than this plugin, and also makes it no longer work as draft entries are now dynamic (eg. use JavaScript to update the UI), which means our plain-ol' server-rendered button will no longer link to the right place. Our suggestion is to disable this plugin and modify your API calls to pass through the Craft preview tokens (which Just Work™) to your API – there's a good guide here: https://nystudio107.com/blog/headless-preview-in-craft-cms
Preview Button plugin for Craft CMS 3.x
Adds a preview button to the entry editor screen to allow previewing of draft/revision entries
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later.
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require biglotteryfund/preview-button
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Preview Button.
Preview Button Overview
Sites that make use of the Element API may not benefit from Craft's preview features if they're not making use of templating. This plugin adds a button to the Entry editing screen which links to a preview URL with ?draft=$id
or ?version=$id
parameters so your backend can look up content from the correct place.
It's your responsibility to write the backend code to fetch these revisions/drafts, but this plugin should allow you to give users a way to preview content directly from the editing screen.
Configuring Preview Button
There are three settings:
1. URL base
This will replace your siteUrl
for the entry's URI (eg. you may wish to serve preview content on a subdomain or subfolder of your main site).
2. Version URL parameter (optional)
This will be appended to the preview URI along with the ID of the version, eg. ?version=$id
.
3. Draft URL parameter (optional)
This will be appended to the preview URI along with the ID of the draft, eg. ?draft=$id
.
Using Preview Button
Install the plugin, configure a URL base as a minimum, and edit an entry in draft/revision mode. You should see a button below the entry fields:
Preview Button Roadmap
Possibly supporting more advanced URL construction and configuring which entry types or user roles can see the preview button.
--
Brought to you by Big Lottery Fund