PHPMAKER uses {{{field}}} that is a placeholder that will be replaced with the value of the specified field when the page is generated.When i use this placeholder within a Custom Template CARD as:
<div class = "col-md-3"">
<div class="card" style="width: 18rem;">
{{{image}}}
<div class="card-body">
<h5 class="card-title">{{{product}}}</h5>
<p class="card-text">{{{color}}}</p>
<a href="#" class="btn btn-primary">Download</a>
</div>
</div>
</div>
It works, but the image is not really encapsulated inside the card.
Is there any way to retrieve the {{{field}}} information as a “string” and use it inside the tag in the Custom Template area?This way it will work 100% as an encapsulated image as a card should be.Some help?