Display Dynamic Text

Display dynamic text on your form that changes depending on the field value that the user enters or is programmatically set.

Overview

A step in your form may need to show a dynamic piece of text depending on custom logic or collected data.

In your Feathery dashboard, you can denote a text variable with double curly braces like: {{firstName}}.

If the text variable matches the ID of the field or hidden field of interest, Feathery will automatically populate it with the right value. To populate the user ID of the current session, use {{feathery_user_id}}.

You can also manually set field values through logic or the embed library to populate text variables.

Example

For example, you might need to display the input values from a calculator, along with the calculated total.

Last updated