Show a message based on the checkbox value e.g. show “This is approved!” when the checkbox is checked.
{% if data.corporateInformation.legallyApproved == true %} This was approved! {% endif %}
Goal
Show a message based on the checkbox value e.g. show “This is approved!” when the checkbox is checked.
Setup in Picturepark
Layer "Corporate Information"
Checkbox "Legally approved"
Fieldpath
data.corporateInformation.legallyApproved
Use Case
A use case for the Checkbox would be to apply some task or advice by using Liquid tags like an if condition and display a message for the true or false case e.g. when approved show “It is approved!”
{% if data.corporateInformation.legallyApproved == true %} This was approved! {% endif %}
Add Comment