Búsquedas recientes


No hay búsquedas recientes

Anne Lhomme's Avatar

Anne Lhomme

Incorporación 15 abr 2021

·

Última actividad 07 sept 2023

Seguimientos

0

Seguidores

0

Actividad total

7

Votos

3

Suscripciones

3

RESUMEN DE LA ACTIVIDAD

Última actividad de Anne Lhomme

Anne Lhomme creó una publicación,

Publicación Discussion - Tips and best practices from the community

Following the creation of a personalized form, the problem we had was that the fields, subject to conditions, appeared empty in the client interface. What we wanted was to see only the fields that would have been completed.
To prevent these fields from appearing and appearing empty, we have modified the code of the Help center theme's ticket request page (request_page.hbs).
Since the value that appears when the field is empty is "-", we have made it so that it is not displayed.

#before modification

{{#each custom_fields}}
{{title}}


{{value}}

{{/ each}}

#after modification

#we indicate that if the character "-" is present then the field is not displayed.
{{#each custom_fields}}
{{#is value "-"}}
{{else}}
{{title}}


{{value}}

{{/ is}}
{{/ each}}

Hope that help!

Publicado 26 ene 2021 · Anne Lhomme

14

Seguidores

19

Votos

12

Comentarios