Hello @ant0n39
No, I’m sorry. The fields’ tags are supported only by the thank you pages and notification emails. If you want to display some fields’ values into the content of an “HTML Content” field, you should use a calculated field as auxiliary.
I’ll try to describe the process with a hypothetical example.
Assuming you want to display the fields: fieldname1, fieldname2, and fieldname3 into the “HTML Content” field.
First, assign unique class names to the tags where to display the fields’ values into the “HTML Content” field, for example:
<table>
<tbody>
<tr>
<td class="field-a"></td>
<td class="field-b"></td>
<td class="field-c"></td>
</tr>
</tbody>
</table>
Second, insert a calculated field in the form to be used as auxiliary, it can be hidden by ticking a checkbox in its settings, with the following equation:
(function(){
jQuery('.field-a').html(fieldname1);
jQuery('.field-b').html(fieldname2);
jQuery('.field-c').html(fieldname3);
})()
And that’s all.
Best regards.
Thanks for the answer, it works!