Using URL parameters you can give a URL to your users where some of the booking fields will be pre-filled for them.
You can use these variables to pass event and invitee information:
date invitee_name invitee_email month
Adding URL parameter to a landing page URL #
For example, our landing page URL is something like this:
Now we can pass Date as our URL parameters by using & at the end of our url. Just like below:
https://fb.pennito.com/?fluent-booking=calendar&host=reachkamrul&event=60min&date=2023-11-07
Now if we want to pass multiple data, we can add & for each one of them just like below:
https://fb.pennito.com/?fluent-booking=calendar&host=reachkamrul&event=60min&date=2023-11-07&invitee_name=Kevin Miller&invitee_email=kevin@wpmanageninja.com
Adding URL parameter to regular page/Post URL #
For example, our page/post URL is something like this:
https://fb.pennito.com/career-talk/
Now we can pass Date as our URL parameters by using ? at the end of our url. Just like below:
https://fb.pennito.com/career-talk/?date=2023-11-07
Now if we want to pass multiple data, we can add & for each one of them just like below:
https://fb.pennito.com/career-talk/?date=2023-11-07&invitee_name=Kevin Miller&invitee_email=kevin@wpmanageninja.com
For the first parameter, we will use ? , and later we will use & for each one of them.