Field Interpolation

Hi angus, effectively we are trying to use a Wizard at the end of a large list of quests.

The Wizard needs to send a welcome message with the checklist (7/10 marked as done) and we like that checklist will be completed when user go ahead with Custom Wizard on Discourse (10/10 checked out).

Our large quest workflow will be enabled on Discourse at the end so the webhook only needs to trigger Discourse Custom Wizard, and the plugin needs to send the PM and check when posting would be done.

What do you think about it?

Any Liquid expert that could help us out? :smiley:

How can I run iteration with liquid? For example we are using the Topic input field where users can choose multiple topics.

When I tried w{step_1_field_1.url}, I get error on submission, scr below

Our desired result:

Currently when I use w{step_1_field_1}, I get this output:

[{„id“=>53910, „title“=>„OG Kush Fast Flowering (Ganja Farmer Seeds) - Steckbrief, Erfahrungen, etc“, „fancy_title“=>„OG Kush Fast Flowering (Ganja Farmer Seeds) - Steckbrief, Erfahrungen, etc“, „url“=>„/t/og-kush-fast-flowering-ganja-farmer-seeds-steckbrief-erfahrungen-etc/53910“}, {„id“=>27612, „title“=>„Glueberry OG von Dutch Passion“, „fancy_title“=>„Glueberry OG von Dutch Passion“, „url“=>„/t/glueberry-og-von-dutch-passion/27612“}]

Our desired output would be a markdown table for each topic based on how many links there were posted

|Strain | Link |
| --- | --- |
| w{step_1_field_1.url} |[Check it out](w{step_1_field_1.url}) |
| w{step_1_field_1.url} |[Check it out](w{step_1_field_1.url}) |
...
1 Like

@angus Does CW use a specific version number of Liquid? Or latest one? Is there maybe some collection of code and snippet examples?