0 Check in Lava Help 1 DJ Grick posted 9 Years Ago I am working to update our children's tags but for some reason still really struggle to write Merge fields. In the manual i see that I should have a #mindblown experience but that whole line doesn't make since to me. The Date field has never worked for us. I (foolishly) didn't save what it was by default, but tried changing it to: {{ 'Now' | Date:'M/d/yyyy' }} Which shows on the lables as: Now' | Date:'M/d/yyyy I am also trying to figure out how to change location merge to show both room location and group name. I know I could just change the location names of each to say what "Sting Ray Room |3rd and 4th Grade" but rooms change usages between our Sunday morning program and Wednesday night Awana so I would need each room in twice. I know I should probably break them into 2 different merge fields but I wanted them to be centered on the label rather then on two different lines. Original lava: {% for group in GroupType.Groups %}{% for location in group.Locations %} {{location.Name}}{% endfor %}{% endfor %} I tried a few different things but most recently: {% for group in GroupType.Groups %} {% for name in GroupType.Groups %} {{group.name}} {% endfor %} {% endfor %} | {% for group in GroupType.Groups %}{% for location in group.Locations %} {{location.Name}}{% endfor %}{% endfor %} Any tips or pointers? One other thing: two of my text fields are not using the space I allowed but are stacking each word on top of the previous. Has anyone else experienced this? How did you solve it? in Zebra Design I has said max of 40 characters but that doesn't seem to effect anything.
DJ Grick 9 years ago Awesome! The dates are working now!Now to figure out how to have the group name show. I did both of your suggestions but it didn't make an impact.Thanks for the help!!!!