Curious if there’s any Webflow solve for string interpolation with dynamic collection field item? Trying to have page display the {{field item}}, unless it’s null/empty, in which case display ‘THIS TEXT’ instead.
My non-webflow approach would prob be string interpolation like so:
<script>document.write(
${variable || “BLANK”});</script>
Example: look at the first H3 element:
<h3>About visiting the {{Place Name}}</h3>
GOAL: If that {{Place Name}} field item is null for any collection item, display ‘Probate Court’ instead.