I need to design an Event Page like below, using Loops & Logic
If people click on any of these Events, we want it to redirect to a Fluent Payment Form, which they can then use to Register for the Event, and make Payment.
THE WORKFLOW
You will notice that each of the Events has a Price: when each Event is clicked and redirected to FluentForm, we want FluentForm to be able to automatically capture the Price value, and enable Checkout immediately, based on that Price value.
For example, Admiralty concert cost 3000: when it is clicked and redirected to Fluent Event Registration Form, FluentForm should automatically capture this 3,000 as the Amount to be paid.
WHAT IS AVAILABLE
Unfortunately, FluentForm does not have any direct way to do this. What is available in FluentForm is something called “dynamic query string” .
How it works is that the price value has to find a way to be appended to the end of the URL of the FluentForm:
For example: the URL of where I have the FluentForm is: "mydomain[dot]com[slash]fluentform
If Loops & Logic has a way to append ( ?price=3000 ) to the end of the URL of the location of the FluentForm, then FluentForm will capture that value.
Take note that the value to be appended to the URL, has to match the correct value of the Post.
How can I achieve this, using Loops & Logic ?
Regards.