Hi,
I know how to use dynamic field population with a querystring. However, I want the form title to be dynamic as well and read a querystring value as well. Is this possible? If so, how can I do this?
Thanks.
Hi,
I know how to use dynamic field population with a querystring. However, I want the form title to be dynamic as well and read a querystring value as well. Is this possible? If so, how can I do this?
Thanks.
The form title doesn't have the ability to be dynamic. Can you give more information on what you are trying to do and maybe I can help you come up with a solution.
Hi David,
Please take a look at http://ocecareers.com/register-for-an-event/ I want the title to be dynamic and show a querystring value. E.g. the title should be 'Register for this cool event'. Instead of register for an event. I want to reuse this form for all our events.
Thanks
Unfortunately, there isn't a way to do that within Gravity Forms. You can have the title not show, and then when you embed it on the page, you can use PHP to show the message you want. So if you put it on a page for Cool Event you could have it in the template showing:
Register for <?php echo the_title() ?> or something to that effect.
Ok, thanks for the quick reply. I will try to do it the way you suggested.