Forms are not showing on Draft in Craft CMS #956
Answered
by
kjmartens
elflores-beyondtrust
asked this question in
Questions & Answers
-
Describe the bug or issue you're experiencing Entry is returning NULL value on statement below:
Steps to reproduce
Expected behavior Craft & Plugin Info (please complete the following information):
Additional context |
Beta Was this translation helpful? Give feedback.
Answered by
kjmartens
Jan 9, 2024
Replies: 1 comment
-
I just tested this on my end, and it seems to be working fine. I tested in both Freeform 3.13.33 and 4.1.13. My code is simple: <h1>{{ entry.title }}</h1>
{% if entry.freeformForm is defined and entry.freeformForm is not empty %}
{% if entry.freeformForm.submittedSuccessfully %}
<h3>Submission Received!</h3>
{% else %}
{{ entry.freeformForm.render() }}
{% endif %}
{% endif %} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kjmartens
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @elflores-beyondtrust,
I just tested this on my end, and it seems to be working fine. I tested in both Freeform 3.13.33 and 4.1.13. My code is simple: