0 How can I display a person's image in a merge template? 2 Jon Morrissette posted 5 Years Ago Trying to create a merge template that prints a photo directory of people in a small group. If I do this... the lava never gets inserted into the image tag, its just blank.{% for Row in Rows %}<tr> <td><img src="{{ Row.Photo.Url }}"> </td> </tr>{% endfor %}If I do this... I can get the photo url as plain text. So weird!{% for Row in Rows %} <tr> <td>{{ Row.Photo.Url }} </td> </tr> {% endfor %}
Eddie Holeman 5 years ago We use an html merge document which is very similar. The only difference might be that we use a Global Attribute instead of hard coding the https://www portion. Here it is: <img src="{{ 'Global' | Attribute:'PublicApplicationRoot' }}{{ row.PhotoUrl }}" style="width: 100%; border-radius: 100px;" />