stoffelio / statamic-live-preview-tag
Adds Antlers tag to show or hide parts of templates in live preview mode.
Installs: 844
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:statamic-addon
Requires
- statamic/cms: ^3.0
README
Adds an Antlers tag to easily show or hide parts of your template when viewing the page in Statamic's live preview mode.
Purpose
Allows you to exclude things like tracking scripts or even parts of your content in live view.
How to Install
You can search for this addon in the Tools > Addons
section of the Statamic control panel and click install, or run the following command from your project root:
composer require stoffelio/statamic-live-preview-tag
How to Use
Simply check if the request is a live preview using the tag:
{{ if {is_live_preview} }}
this will be shown only in live preview
{{ else }}
this will be hidden in live preview
{{ /if }}