Como posso formatar placeholders com marcação Liquid?



Editado 12 de jan. de 2023


11

0

3 comentários

Bob Novak This is brilliant! Very useful, thanks so much!

0


Super Tipp {{ticket.created_at | date: "%d/%m/%Y"}} :-))

 

0


This is an old post but here is a follow up as to what works putting a comma at the end of the tag for each choice in a drop down multi field, thereby placing each choice on it's own line -  

{% assign missing=”{{ticket.ticket_field_<field number> | split:","%}
{% for answer in missing in %}
{{ answer }}
{% endfor %}

2


Entrar para comentar.