Is there a way to pass a query variable to a element on the a page?
Example: domain.com/?field1=20&field2=35
When the page loads and it has those in the URL, is there a way to put those values into a field?
Is there a way to pass a query variable to a element on the a page?
Example: domain.com/?field1=20&field2=35
When the page loads and it has those in the URL, is there a way to put those values into a field?
{url_parameter:my_key}
– Returns the value of the my_key
parameter in the url (https://mydomain.pt/?my_key=value)
Awesome! I just couldn’t find it. Thank you.