Note: this project is no longer maintained / usable beyond Craft CMS 3.2
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, (*1)
Adds a preview button to the entry editor screen to allow previewing of draft/revision entries, (*2)
, (*3)
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later., (*4)
Installation
To install the plugin, follow these instructions., (*5)
-
Open your terminal and go to your Craft project:, (*6)
cd /path/to/project
-
Then tell Composer to load the plugin:, (*7)
composer require biglotteryfund/preview-button
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Preview Button., (*8)
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., (*9)
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., (*10)
There are three settings:, (*11)
, (*12)
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)., (*13)
2. Version URL parameter (optional)
This will be appended to the preview URI along with the ID of the version, eg. ?version=$id
., (*14)
3. Draft URL parameter (optional)
This will be appended to the preview URI along with the ID of the draft, eg. ?draft=$id
., (*15)
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:, (*16)
, (*17)
Possibly supporting more advanced URL construction and configuring which entry types or user roles can see the preview button., (*18)
--, (*19)
Brought to you by Big Lottery Fund, (*20)