Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
krileon wrote: Hiding empty fields only applies if the field returns absolutely nothing. Adding to the layout will result in it outputting something. You can use IF substitutions to determine if you need to add to the layout or not. Example as follows.
[cb:if FIELD_NAME!=""][value] €[/cb:if]
Be sure to replace FIELD_NAME with the actual name of your field. If it can't accept empty and its empty value is something like 0 then you need to account for that in your substitution like the following.
[cb:if FIELD_NAME!="" and FIELD_NAME!="0"][value] €[/cb:if]
Please Log in or Create an account to join the conversation.