Auto Populate Contact Form 7 Input Fields with URL Parameter
I've just finished a WordPress development project which required fields in contact forms to be auto-populated with values based on the page from which the form page was called. In this case I was using the Contact Form 7 plugin. It's fairly simple to set default input field values with Contact Form 7 but assigning values dynamically based on context proved to be a bit more of a challenge. Needless to say though, a bit of hacking and an hour so on Google yielded a satisfactory result.
The site allows users to browse from a selection of ski chalets and submit a reservation enquiry. First of all I had to work out how to pass the name of the chalet being enquired about to the contact form page. I found this post which told me how to do this using a bit of extra code in the theme's functions.php file as follows:
// chalet name for enquiry form
function parameter_queryvars( $qvars ) {
$qvars[] = 'chalet';
return $qvars;
}
add_filter('query_vars', 'parameter_queryvars' );
function echo_chalet() {
global $wp_query;
if (isset($wp_query->query_vars['chalet']))
{
print $wp_query->query_vars['chalet'];
}
}
This sets up a new WordPress query variable called "chalet", allowing the chalet enquiry form page to be called as follows:
http://domainname.com/chalet-enquiry/?chalet=chaletname
Next, how to insert the value of "chaletname" into the relevant field on the form? Some unsuccessful hacking of Contact Form 7's text.php module followed by further Googling led me to theĀ Contact Form 7 Dynamic Text Extension plugin which is designed specifically to add this capability to Contact Form 7. The plugin creates a new field type tag for the form called "dynamictext", which allowed me to create an input field in the form to accept the "chaletname" variable passed to the page as follows:
[dynamictext enquiry-chalet "CF7_GET key='chalet'"]
It works a treat and even better allowed me to leave the Contact Form 7 core code unhacked.
Thanks to WordPress Warrior for the functions.php extension and Sevenspark for the plugin.
Tags: PHP, Wordpress
Managed too accomplish the same kind of thing thanks too your guide. Thanks!
Very useful guide, well written. I'd seen the dynamic text extension for Contact form 7 but you saved me a tonne of time figuring out how to pass URL parameters into the form. Thank you!
This is great! Though I implemented it and realized it only works for text fields and hidden fields. Any idea how to set a dropdown's default selection with this method?
How about this?
http://www.featheredowl.com/contact-form-7-default-select-value-url-query-variable/
I can't seem to get this function to work. I wonder if someone might be able to help? These are the steps that i took:-
1. Added the above function code to the function.php page in WP and called my variable 'seating'
2. Then created a form called 'seating enquiry' to which I added the dynamic field. The shortcode used was [dynamictext enquiry-seating "CF7_GET key='seating'"]
3 The form page was then created and the shortcode [contact-form-7 id="6" title="seating-enquiry"] was used.
4. A text link was created from my product seating page to the form page.
Unfortuantely when the link is clicked the dynamic text field isn't auto populated with the name of my product page.
Maybe I've overlooked something in the setup but am not too sure what. Any ideas or suggestions would be greatly appreciated.
Hi Jasmin
Have you loaded the jQuery javascript library and/or the javascript code on your page?
Hi Ant - I saw you responded to Jasmin about the installing of the jQuery Javascripts Library and/or the javascript code on your page..
I am also having trouble with this and I am just a basic HTML/CSS guy.
How do I add the jQuery javascript library? Does that go in the HTML file or within the functions.php file? I would appreciate your help! thanks
Ryan
Ryan - I'll be in touch
Hi there is it possible to do this without having the parameter shown in the url?
a good example of this is
http://www.lightpoint.cz/jazykove-kurzy-skoly-light-point/
they use the url tag course id is here
hi.. i hav installed cf7 im building a link submission website wat i want is i hav to send the output of the form to home page as well as category page but not to email will u please help me..
How about using the Contact Form 7 to Database Extension plugin to capture the submitted form data in the WP database? You can then extract these and display them anywhere else on your site.
Great tutorial. What took you an hour, saved me an hour!
Thanks.
Woww!!!! Great tutorial. It's just what I was looking for a project I'm driving. THANKS A LOT!!!! Terrific
Hi
Excelent tutorial. It really helped ma and was very easy.
I just got one problem. If I add an ID to the string like this:
[dynamictext enquiry-chalet id:amount "CF7_GET key='value1'"]
Then it doesnt work any more. Is there a workaround for this?
My guess would be to move the id after the "CF7_GET key='value1'" part of the shortcode
Thank you, you are a lifesaver!
Great tutorial, a real time saver!
Just a quick question, what do I have to do in order to pass a value like "New Cars" or "Used cars"?
Do I have to change something in the js or the functions.php file?
Thanks!