Dynamic Products via Post Meta

Had an interesting question on the forum today:

  1. The site has multiple publications that are available for purchase, each has a separate price value. The rest of the form is the same for each publication, only the price changes.
  2. I want all publications to be purchased using a singular form.
  3. I want the variation in price controlled by a custom field in WordPrss.

Does that sound possible?

For developers familiar with Gravity Forms, the first tool you might reach for is Dynamic Population using the gform_field_value hook. That will work, but here is an easier method.

Using Merge Tags with Dynamic Population

If you’ve used Gravity Forms before, you’re probably familiar with merge tags. Merge tags allow you to include information specific to the current form, entry, user, page, post and much more! Product fields don’t support the default value option so we’ll need to enable dynamic population for this field.

You will see that I am using the {embed_post:post_title} merge tag with the “post_title” property. This will display the current post/page title as the product name. You can add the same form on multiple posts and this merge tag will always output the title of the post on which the form is currently being viewed.

Next, we’re using the {custom_field:price} to populate the post’s custom field titled “price” for the Product field’s “price” input. This assumes you have already setup a custom field on each post named “price”. Whatever value is stored for this custom field (in my example below, the value is “16.99”) will be populated for the field input you’ve indicated. We use the same method to populate the quantity input as well.

Wait… I didn’t think you could use merge tags as population parameters?

Gravity Forms does not support using merge tags as dynamic population parameters out of the box but I’ve written a little snippet that makes these work automagically!

Just paste this code in your theme’s functions.php file.

Summary

The finished product (no pun intended) will be a product that is completely populated from custom fields (aka post meta).

This is just one example of how enabling merge tags for dynamic population can be used. Are you planning on using this for something else? Tell us about it in the comments.

Comments

  1. Matt Kiba
    Matt Kiba November 12, 2018 at 6:51 pm

    Does this method work for WooCommerce Product custom fields as well? My real goal is for the price of the particular product the form is attached to to be auto-populated into my form, but this as is would be sufficient.

    Do I have to change something for it to load Product custom fields instead?

    Thank you!

    Reply
    1. David Smith
      David Smith Staff November 12, 2018 at 7:41 pm

      As far as I know, WooCommerce Products are a “standard” custom post type so they have all the attributes of posts and pages including custom fields. I would expect this to work if you’re populating a Gravity Form on a WooCommerce Product page.

  2. Natetronn
    Natetronn August 30, 2017 at 1:18 pm

    Will this snippet allow a field to be populated from another Gravity Form field within the same form and this upon submission of said form?

    For example, if I have an email field named “email”, with ID of 7 i.e. {email:7} and I want to populate an “extra email” field, which is a hidden field (or admin?), will I simply use this snippet and added {email:7} to extra email’s default or dynamic populate?

    I’ve tried that without success and am wondering if I’m not fully understanding the use case here.

    Thank you for your time!

    Reply
    1. David Smith
      David Smith Staff February 8, 2017 at 11:16 am

      Hi Mark, unfortunately, we’d have to dig into your configuration to determine what’s going on here. We’ll leave this open for other users who may have run into the same problem.

  3. John-Henry
    John-Henry October 19, 2016 at 8:36 am

    This is nice, is there any way that I can add taxonomy metadata to this. What I’m trying to accomplish:

    I have added a custom user taxonomy called registration type, here the admin can have different types of user, e.g. architect, technician, etc. *This is working properly

    I have added metadata to this type called cost, and displays the cost related to the user *this is done already,saving properly,etc.

    I have added a dropdown to the registration form that populates all of the taxonomies dynamically * this is already working properly thanks to your custom post plugin.

    I now want to add the custom taxonomy meta to the form so that when the user selects a taxonomy the price gets updated on the form, this doesn’t have to be an actual price field (can be plain text as well).

    Would this be at all possible?

    Reply
    1. David Smith
      David Smith Staff October 30, 2016 at 11:20 pm

      Hi John, absolutely possible but not without additional custom code. I’d reach out to Codeable to hire a developer to assist with this one.

  4. Gian Luca
    Gian Luca May 10, 2016 at 6:46 am

    Hello. This seems exactly what I was looking for. I have just a question: My product dropdown needs to be populated by a list of custom post type fields. But I also want to select values from the dropdown via an url parameter. Can I?

    Example :

    dropdown values: CPT Title ; CPT Price Field

    I want to insert the form on a page and direct users to a precompiled form like http://www.nameofsite.dom/pageurl/?url_param=xxx

    Possible?

    Reply
  5. Patrick Hinchcliff
    Patrick Hinchcliff April 2, 2016 at 10:59 am

    Hey David,

    I seem to also be having an issue with the snippet. For a current project I’ve used a couple of your snippets so far and all have worked great, but when I add this particular one and update my form, my site goes blank. I’m not really sure what I’m missing. I’ve tried various different things playing with the opening and ending statements of the code previous (your gw round code) and the code I’m adding but it just doesn’t seem to like it. Any help would be sincerely appreciated as this functionality is pretty much a necessity for this project to work.

    Reply
    1. Patrick Hinchcliff
      Patrick Hinchcliff April 2, 2016 at 12:06 pm

      Ok, so I fixed the issue there, but that unfortunately leads me to another question. How would I make this work if I wanted my custom value to be displayed within the same form? (ie. I have a custom number field that is doing a calculation that determines the price of a membership, and I want that calculated number to populate a product I’ve created on the same form)…

    2. David Smith
      David Smith Staff April 3, 2016 at 10:31 am

      Hi Patrick, you would need to use a calculated product field or if you are trying to dynamically set the quantity, you can use GP Copy Cat to copy the value from your calculation field and then GP Read Only to prevent the user from modifying it.

    3. Patrick Hinchcliff
      Patrick Hinchcliff April 3, 2016 at 10:34 am

      Hey David,

      I greatly appreciate your help. I think I’m just going to use custom fields to calculate the price totals based on the field entries on one form and push them to (part 2 as the user will see) form 2 and then I can further use that data since it’s stored in post meta fields. However, the copycat perk will help make that ALOT easier. Your perks are literally priceless.

  6. Darren Gour
    Darren Gour March 17, 2016 at 8:10 pm

    This gives me some ideas based on a current project we’re working on.

    That said is this the only or best way to pull through the product_id / post_id of the woo page the gravity form is currently attached to ?

    If I var_dump the $woocommerce object I can see the values of the form that is attached to the product I’m currently validating that hasn’t yet hit the cart and I see the product_id in there but not sure how to grab it just yet.

    Reply
    1. David Smith
      David Smith Staff March 25, 2016 at 4:25 pm

      This is just one way to do this. I don’t fully understand what you’re trying to do but Gravity Forms has a lot of hooks that make dynamic population very flexible.

  7. Alex
    Alex February 8, 2016 at 11:32 pm

    Your tutorials and snippets have been quite helpful in the creation of my new quote system.

    There’s only 1 thing I’m lacking and its a summary sidebar widget is on the right hand side, summarising total quantity, products, options, per unit price and total price.

    I feel like merge tags, dynamically pre-populated items and read-only might provide the results I’m after but a bit out of my depth here, if you could point me in the right direction that would be great!

    Thank you.

    Reply
    1. David Smith
      David Smith Staff March 8, 2016 at 10:53 pm

      I don’t have an existing solution for this; however, I’d love to create one. Any interest in commissioning this functionality? Get in touch.

  8. Tim Dill
    Tim Dill February 5, 2016 at 10:21 am

    Hey David… I’m constantly running into your site for instructions on GF workarounds… so thank you for all the great information. Over the last few months I have found myself working on a site for a non-profit and it has very deeply involved GF and GravityView. Here’s my latest effort: I’m using the PayPal add-on to accept payments for an event. We offer the option to pay a 50% deposit or pay it in full at the time of the application. The application is a GF so once the initial payment is accepted, it shows the details, amount, date etc in the form… which is great, but here’s my problem. If the person elects to only pay the deposit, there is no way to accept the balance due without creating a separate form for that transaction.

    This may be asking way too much, but here’s what I see a remote possibility: If I can create a separate form that has a dynamically populated amount due (based on subtracting the initial deposit amount collected in the initial form) then I can use a hidden field (to collect USER ID) and then hopefully match those up on the back end.

    Is there a hook or example that you could give that would allow me to make this happen? I hope this remotely makes sense. :)

    Reply
    1. David Smith
      David Smith Staff March 25, 2016 at 4:56 pm

      Hi Tim, I don’t have a ready solution for this. I’ve seen this requested a bunch though so it’s on my radar for a plugin or snippet.

  9. Andy
    Andy January 11, 2016 at 11:17 am

    Is it possible to do this same thing with a variable price as well? I have a very complex product that I need to have GForms pull the price from the variable price and not just the main product price. Any help you could provide would be amazing!!

    Reply
  10. Jonoc
    Jonoc December 27, 2015 at 5:00 am

    Thanks for the info !

    I’ve been trying to populate gravity form’s drop down menu to list the options of a woocommerce product’s ATTRIBUTES.

    What parameter should I put in for it to do so ? Is this even possible ?

    Reply
  11. Derrick
    Derrick December 2, 2015 at 1:20 am

    Not sure if this is the method we need. We have a custom quote form (not completed). There are multiple products. Each product has different specs like size, material, etc.. These options will appear using conditional logic I am assuming depending on product selected. Each spec has a different price. My first dilemma is how to allow for selecting multiple products since each one has a different set of specs to be chosen from. Second dilemma, how to allow user to select multiple products and obtain a correct total no matter what product or how many is chosen. I do know that I will need the value from a main quantity field passed onto the selections for specs. Then all specs will be multiplied by the main total number value. The page is multi page. I’m new to GF. I understand dynamic content, but not sure of the best method to use. Any help greatly appreciated!

    Reply
    1. David Smith
      David Smith Staff December 5, 2015 at 8:25 am

      Hi Derrick, I’m not sure I fully understand your requirements. They sound complex enough that hiring a GF developer to offer some consultation might be a good idea.

  12. Ben
    Ben November 5, 2015 at 9:28 am

    Hi David,

    Just wanted to say thanks for this tutorial, it was just what I was looking for when building a virtual gift shop for a charity website.

    Ben

    Reply
  13. Dom
    Dom October 2, 2015 at 4:39 pm

    Hi David

    Thanks for this. It’s going to be perfect on a site I’m developing selling training courses. Now I can set up posts with the course title as the post title, add a custom Price field, and then populate a form based on that data and send it to the GF PayPal add-on. One form can be used across however many courses are running, rather than having to do a new form for each course.

    Love your site. It’s helped me a ton.

    Thanks Dom

    Reply
  14. Mariano
    Mariano July 12, 2015 at 10:42 am

    Is there any way to dynamic populate the differents values for a dropbox, based on a previous selection (in a diferent field) in the same form?

    For example: I select the tshirt color in dropbox one, so in the second dropbox I want to dynamic populate all the available sizes for that selected color.

    thanks.

    Reply
    1. Stéphane Guillez
      Stéphane Guillez February 17, 2016 at 2:44 am

      Gravity forms dynamic population works well but you have to notice that it does not work today with multipage forms. Also, you will have to create in your database a simple table with the columns of your choice containing the data to be chained column by column. Don’t be afraid it is just a few easy lines of code that you can easily find on mysql documentation.

  15. Neil Curtis
    Neil Curtis July 7, 2015 at 5:51 am

    Sweet. I needed to display a form on several different pages but each form needed to be directly linked to the page it was on. I used the {embed_post:post_title} tag to pull in the post title into a hidden field so I can see which form is submitted.

    A life saver because I thought I was going to have to create 100’s of different forms for each page on my site.

    Thanks a lot

    Neil

    Reply
  16. Carlos Flores
    Carlos Flores April 25, 2015 at 6:24 pm

    Very cool. Thank you so much for this code!!!! Worked beautifully with my project. Integrated Gravity forms with Woocommerce data. Thank you. Where is a donate button ?

    Reply
    1. David Smith
      David Smith Staff April 26, 2015 at 8:02 pm

      Hi Carlos, best way to say thank you is buying Gravity Perks. If that’s a bigger “thank you” then you were planning, just wait a little while and I’m sure you’ll either use another one of my snippets or need to buy Gravity Perks for one of it’s many features. ;)

      Regardless, I’m happy to have been able to help you!

  17. Liam
    Liam April 24, 2015 at 11:55 am

    I’m trying to populate a product’s quantity field with a calculation (number field). Does it work with this? I have tried but no luck so far.

    Reply
    1. David Smith
      David Smith Staff April 24, 2015 at 8:43 pm

      Hi Liam, you can use GP Copy Cat to populate the value of Calculation field into the Quantity input (example) and you can use GP Read Only to make the Quantity input read-only. Chances are, you won’t want the Calculated field to be visible. You can hide it by adding the “gf_hidden” class to the “Custom CSS Class” setting via the Form Editor.

  18. Emma Bertouche
    Emma Bertouche April 1, 2015 at 11:25 am

    Hi David,

    Great site, I’m also a massive fan of Gravity Forms!

    I’m using this at the monent on our product pages and want to direct the form submission to different email addresses based on the url it was submitted from.

    So in the ‘send to’ and ‘configure routing’ options I’m saying send to example@example.com if ‘hidden field’ is ….

    What do I need to put as the variable; the full URL, the page ID, or something else? I’ve tried the full url and page ID on our test server but the email doesn’t seem to be coming through to the email address I’ve specified.

    Thanks

    Reply
    1. David Smith
      David Smith Staff April 1, 2015 at 12:57 pm

      You could capture the {embed_url} which will allow you to base the the routing on which page the form is coming from. :)

  19. steph
    steph March 4, 2015 at 3:38 am

    Hello david,

    In first time I’m loving your site!

    I have a similar situation, I think..

    I want to display a field based on a hidden field that dynamically recovered the value of a dropdown field in front of the gravity form.

    If hidden field get dropdown variation 1 => display section 1 if hidden field get dropdown variation 2 => display section 2

    Thanks for your help!!

    Reply
    1. David Smith
      David Smith Staff March 4, 2015 at 9:05 am

      Hi Steph, glad you’re loving the site. :)

      I’m not sure I understand what you’re trying to do. Could you clarify? A screengrab or demo site would be welcome.

  20. Robby Payne
    Robby Payne February 19, 2015 at 10:54 am

    Hey David!

    First off, I’m loving this site!

    I have a situation similar to the original question in this post, but I just need the {embed_post:post_title} to work. I copied the code into my functions.php, created a hidden field in the form, added “allow field to be populated dynamically”, and added {embed_post:post_title} as the parameter. Upon looking at the entries, though, the data is not getting passed on to the form entry.

    I just need the post title to be collected on a form that is across multiple posts. I am already collecting the author_name so that proper notifications are getting sent, but I’d like to further sort this out so that if one author has multiple posts, they will be able to see the title of the post that the form entry came from.

    Thanks for any help!!!

    Reply
    1. David Smith
      David Smith Staff February 19, 2015 at 1:30 pm

      I would expect this to work as well. You may have found a bug. I’d ping GF support to get this confirmed.

    2. Robby Payne
      Robby Payne February 19, 2015 at 3:53 pm

      Thanks for your reply! In beginning to submit a ticket, I had to check my GF version and realized that on the site I’m using to test, I had not updated the plugin in a good while. IDIOT!

      Anyway, the snippet works beautifully now!

      Do you have a list of all the meta items this would work with?

      Thanks again for your help!!!

    3. David Smith
      David Smith Staff February 19, 2015 at 4:27 pm

      It will work with any pre pop merge tag (you can get a list by checking out the merge tag icon next to the Default Value setting of most fields). It will also work with {user:any_custom_meta_key} and probably some more that I’m not thinking about right now… A lot!

  21. Joel Davis
    Joel Davis January 22, 2015 at 4:57 pm

    Hi there, I have a similar problem I’ve been trying to solve: We sell memberships for water polo 4x year Each parent registers and signs up one or more of their children. During the course of the season the child must register and pay for various tournaments (products in WC) The problem I am try to solve is populating the child information EACH time a parent is required to register for or pay for a tournament. * using UserMetaMgr I am able to store an expanded profile of the children in the user meta.

    It would appear that I could us GF to populate a field with custom user meta

    Is it possible to pre-populate a dropdown with the multiple children in GF that can be associated with the WC order?

    Sorry for posting a reply to your original post, it however seems relevant. Thanks Joel

    Reply
    1. David Smith
      David Smith Staff January 25, 2015 at 5:32 pm

      Hi Joel,

      It’s possible but would require custom code. Here is a good article on how to populate drop down fields. In your case, rather than use get_posts() to populate posts, you’d need to use the GFAPI::get_entries() method to fetch the original entry submitted by this user from the original form and then loop through those entries to get the names of the children.

  22. Brianna Deleasa
    Brianna Deleasa December 31, 2014 at 1:43 pm

    Thank you very much for this! I used your function in a project I’m currently working on. It made life so much easier!

    Reply
  23. Stuart
    Stuart November 11, 2014 at 8:33 am

    RE comment on October 1, 2014 at 6:41 am

    I am also looking for my form to be prepopulated with the product attributes of the product for which the form is shown, so that when the form is submitted the product which has been created has carried over those attributes – attributes being a feature of WooCommerce but which are shown in the metadata as what I assume is an array, for example:

    _product_attributes pa_manufacturer » name pa_manufacturer » value » position 50 » is_visible 1 » is_variation 0 » is_taxonomy 1

    How would I call these from my form?

    Thanks

    Stuart

    Reply
    1. David Smith
      David Smith Staff November 12, 2014 at 4:06 pm

      Hey Stuart, I’m not familiar with how this would be handled. A WC expert would be better equipped to answer this questions. If anyone else knows, please feel free to jump in. :)

  24. Todd
    Todd November 10, 2014 at 4:05 pm

    Hi Wiz- I’m getting an error with this snippet that gives me the white screen of nothing. I assume that it’s because I just added your more recent snippet so I can use Merge Tags in my Confirmation page. I deduced this from my error log:

    PHP Fatal error: Cannot redeclare gw_prepopluate_merge_tags()

    Are they mutually exclusive?

    Reply
    1. David Smith
      David Smith Staff November 11, 2014 at 6:20 am

      There shouldn’t be any interference with the Post Content Merge Tags snippet. That’s all wrapped in it’s own class so none of the functions would cause this issue. If you search for that function name “gw_prepopluate_merge_tags” in your theme’s functions.php do you see any other instances of it?

  25. Dave
    Dave September 26, 2014 at 5:13 pm

    Is there a way to pre-populate a form based on the contents of a previously-submitted form? The use case would be, admin wants to send a link to the form submitter to review and/or update their previous submission. Feel free to email me if you have a solution — even if it would there would be a price associated ;)

    Reply
    1. David Smith
      David Smith Staff September 27, 2014 at 8:54 am

      Hey Dave, saw your query on Twitter first and just responded to your email.

      For others looking for the same functionality, I am working on a more robust solution which will be available here at GravityWiz.com soon. :)

  26. Osvaldo
    Osvaldo September 18, 2014 at 6:44 am

    Hi David. I’m new with Gravity Forms. I have created two forms to fill two tables created with MYSQL Table Builder (add-on) in the database. That’s all ok, but I want a field on one form is filled dynamically from a ‘select’ field type, containing data from another field in the other table. Imagine: A table ‘books’ and other ‘readings’. Therefore the ‘readings’ table field ‘book_name’, could be filled from ‘select’ type field, where all the books, by its name, appear. I have some knowledge of PHP, and I guess I should use ‘gform_field_value_list’, but do not know how. Thank you very much, from Spain.

    Osvaldo

    Reply
    1. David Smith
      David Smith Staff September 18, 2014 at 11:43 am

      Hi Osvaldo,

      Here is a tutorial which covers the basics of populating a select field (aka drop down).

      http://www.gravityhelp.com/documentation/page/Dynamically_Populating_Drop_Down_Fields

      This tutorial demonstrates how to retrieve and populate a list of posts. In your case, you would need to query your custom table and populate that data instead. This tutorial will cover the format that the data needs to be in and here is some WordPress documentation on using the $wpdb (wordpress database object) to assist in writing custom queries. This assumes that your custom table is in the same database as your WP install.

      http://codex.wordpress.org/Class_Reference/wpdb

  27. Chris Aitken
    Chris Aitken September 15, 2014 at 4:21 pm

    Hi David — is there an easy way to use this snippet to dynamically pull into user data beyond first and last name? I’d like to be able to dynamically pull in other “standard” WP fields from the user’s profile. Thanks in advance for any pointers …

    Cheers, Chris

    Reply
    1. David Smith
      David Smith Staff September 15, 2014 at 10:03 pm

      {user:xxx} should work for any user meta. For example, the email is “user_email” and the merge tag would be {user:user_email}.

    2. Chris Aitken
      Chris Aitken September 15, 2014 at 11:02 pm

      Hi David — thanks for the quick response. I should have been clearer in my question :-)

      I have a number of custom fields that have been added by (in this case) Wishlist Member. I’d like to be able to dynamically call them.

      For example: from the following array, I’d like to be able to pull wpm_useraddress[company]

      [wpm_useraddress] => Array ( [company] => [address1] => [address2] => [city] => [state] => [zip] => [country] => Select Country )

      Thanks for any further pointers!

      Cheers, Chris

    3. David Smith
      David Smith Staff September 15, 2014 at 11:54 pm

      There isn’t an easy way I know of to do this. You’d need to write some custom code that handles getting the “nested” value.

    4. Chris Aitken
      Chris Aitken September 16, 2014 at 12:44 pm

      Hi David — thanks; if, instead I added a custom field to the user’s profile (using CIMY User Profile plugin), is there a change to your snippet that would allow me to dynamically call that field (i.e., not in an array) into the Gravity Form?

      Thanks for your help — feel free to email me if this is complex and we can chat about (more) paid work.

      Thanks, Chris

  28. Wain watkins
    Wain watkins August 20, 2014 at 12:30 am

    Is it possible to use merge tags or a similar function in a field label?

    For example: Let’s say I have a gravity form embedded in all posts. I want to be able to say: “How would you rate this {current title of post}?

    Is this possible?

    Reply
  29. Patson
    Patson August 5, 2014 at 4:24 pm

    Hi David.

    I am currently using the wooecommerce for my products and want to automatically populate the product name to my gravity form when the click on the enquire now but on each product. My products are Tours and i want to know for which tour the enquiry is be made for. example URL of the product: http://ultimatemotorcycleadventures.com/?product=tour-2-franschoek-hermanus-struisbaai-bredasdorp-self-guided-6-days-180km. on the gravity form i have a field Tour and want it to be populated with “tour-2-franschoek-hermanus-struisbaai-bredasdorp-self-guided-6-days-180km” if Enquire now button is clicked from that page. Your help would be greatly appreciated.

    Reply
    1. David Smith
      David Smith Staff August 5, 2014 at 6:16 pm

      Hey Patson, I took a look at the URL you provide and it appears you were able to get this working. :)

    2. Patson
      Patson August 6, 2014 at 2:49 am

      Hi David. Yes i was able to fix it. Your article did point me in the right direction. Thank you anyway for having had spared a moment to look at my issue. :)

  30. Kate
    Kate July 10, 2014 at 10:50 am

    I was in the middle of trying to do this myself with handwritten code (am not awesome at PHP). Imagine my excitement when I discovered you’d already written exactly what I needed. I got it working in 30 seconds. Thanks so much!

    We have a bunch of products and their sizes range from XXS-5XL, only different products have different size ranges (some start at XXS, some at XS, some at S — some only go to 2XL or 3XL, etc.). We’re keeping product sizing in a bit of custom metadata.* I’m using this to grab that product sizing metadata. I’m using Gravity Forms conditional logic to hide a sized quantity input (e.g., if Garment Sizing field does not contain “gsize_3xl” the 3XL input does not appear). It makes my life wayyyy easier avoiding a form for each different product sizing range!

    Thank you again! I am so excited at how quickly this worked.

    *I realize it’s probably possible to have Gravity Forms fetch data from WooCommerce, but I figured this is the simplest/fastest way for someone not great at code to get it up and running, especially as we don’t actually need WooCommerce to handle anything related to sizes!

    Reply
  31. Thomas L
    Thomas L April 9, 2014 at 2:30 pm

    Hi there,

    Thanks for the snippet!

    I’m wondering of there’s a way to populate a form select field based on multiple custom field values on a post (each value = unique option)?

    Cheers, Thomas

    Reply
    1. David Smith
      David Smith Staff April 10, 2014 at 8:37 am

      Hi Thomas, this article will get your started. The big difference is that instead of getting posts (via the get_posts() function), you’ll want to get the post meta you wish to populate (probably via the get_post_meta() function).

  32. Rob
    Rob January 24, 2014 at 1:20 am

    I did everything you said but I do not see any clear example of how to paste the snippet into the functions.php file. I tried it on my own but nothing seems to work, the product name inside the product field does not populate the page title. If I put the form into a page it continuously loads. Does it have to be a post, not a page?

    Reply
    1. David Smith
      David Smith Staff January 24, 2014 at 8:26 am

      Hi Rob, could you clarify on the issue you’re running into and confirm what you are trying to accomplish? A URL to your progress would be helpful as well.

      To answer your question, this should work with any post type (including custom post types).

    2. Rob
      Rob January 24, 2014 at 12:54 pm

      I am a graphic designer, not much of a coder. I just need to know how to place this snippet into my functions.php file without breaking the functionality of my website. I could figure it out with trial and error, but I thought maybe you would be kind enough to help.

    3. Rob
      Rob January 26, 2014 at 12:30 am

      David, Thank you! It is working. I haven’t touched PHP in about 2 years, so I needed that video about snippets. A big help.

    1. David Smith
      David Smith Staff September 19, 2014 at 9:53 pm

      Sorry Henrique, WooCommerce is not my forte. I bet WooCommerce support could help you with this question.

  33. Matt Rizzo
    Matt Rizzo October 22, 2013 at 11:20 am

    So after I populate my product field from my products cpt. How do I populate my order cpt products metabox with the array from my gravtiy form field. I tried using the gravity + custom post types plugin, but the “custom post” field does not have the “product” field as a n option.

    Any thoughts?

    Reply
  34. Martin
    Martin October 17, 2013 at 8:49 am

    Hi David, I try to implement a pricing calculator. My form has several products with dependencies. That means when I select product A I need also one piece of product X. Therefore I need to update the quantity field of product X which is on the same form. I’ve pasted your code in my functions php file. I put my merge tag into the quantity field and checked the automatically population flag. But the field never gets updated. Also other source fields and the name field or the price field updates don’t work. I’ve tested the merge tag in the formula field and it worked fine. I’m using Gravity Forms Version 1.7.11 on a WordPress 3.5.2 installation. How to find out what’s wrong? Is there a (simple) way to find out if your filter works? Thanks, Martin

    Reply
  35. Jonathan Lundström
    Jonathan Lundström August 19, 2013 at 8:01 am

    Hello!

    This snippet is great and just what I needed for a specific task. Now I’m facing another issue and that is to fetch custom user fields. Do you happen to know if there is any way to do this by default, or have you perhaps written any snippets that allows users to do this?

    Thanks in advance, Jonathan

    Reply
  36. Jenny Beaumont
    Jenny Beaumont June 20, 2013 at 7:52 am

    Heya – thanks for the quick reply!

    I would eventually be interested in sponsoring a solution, but first I should clarify, and also admit that I’m not really interested in the populate fields part of your snippet. I know, bad me, right? But your post is the only thing even slightly resembling what I’m after – plus, I know you to be a great and reliable source :)

    What I really am trying to accomplish – and can’t find a good tutorial for anywhere – is simply creating a custom merge tag from external meta data. In my case, the custom field isn’t in the same page as my form. I’ve mucked about quite a bit, but just can’t figure it out. The Gravity Forms documentation for their gform_merge_tags isn’t very detailed…

    thnx! and feel free to contact via email :) -jennyb

    Reply
  37. Jenny Beaumont
    Jenny Beaumont June 20, 2013 at 4:50 am

    Hi David, What if the custom field information is coming from a different page? Any ideas? thnx! -jennyb

    Reply
    1. David Smith
      David Smith Staff June 20, 2013 at 7:40 am

      Hi Jenny, a simple solution would to be to modify the snippet a bit: http://pastie.org/8062738

      The issue with this modification is that it removes the ability to use the original functionality; meaning you can not get the post details or custom fields of the current post.

      The idea solution is probably to add support for passing a post ID to the merge tag. This would take more time than I can offer for free but if the simple solution isn’t going to work for you, let me know if you’d be interested in sponsoring a more flexible solution.

  38. Kyle Williams
    Kyle Williams May 7, 2013 at 2:54 pm

    Hey Mark,

    Great article, your site is awesome. It is great to see gravity forms design patterns broken down.

    Question for you, how does this dynamic product technique work for the default reporting structures for gforms?

    Reply
    1. David Smith
      David Smith Staff May 7, 2013 at 10:01 pm

      Hi Kyle, Gravity Forms saves a copy of all the product data submitted with the form in the entry meta. This means that the submitted pricing data is separate from the actual stored default pricing data with the fields. Short answer, it works well! :)

    1. David Smith
      David Smith Staff October 23, 2012 at 10:36 am

      Hi Mark, this functionality would help you much if you’re trying to limit the number of entries per category. It’s an interesting question though. Send it in via the Ask Wiz form and I’ll add it to the queue. :)

  39. David Kartuzinski
    David Kartuzinski September 11, 2012 at 4:10 pm

    This is exactly what I am looking for?  Did anyone find a solution?  I already sent a “Ask the Wiz” question and then found this.  Mr. Wizard?  Any help on this would be great.

    Thanks.

    -DK

    Reply
  40. Tanya
    Tanya September 9, 2012 at 9:19 am

    Is it possible to do the same kind of dynamic population with list fields?

    Now i’m using this code in my functions.php

    add_filter(“gform_column_input_12_53_1”, “set_column”, 10, 5);

    function set_column($input_info, $field, $column, $value, $form_id){

    return array(“type” => “select”, “choices” => “choice 1, choice 2, choice 3”);

    }

    It works fine, but i doubt that the site editor will be glad to deals with functions.php each time) And I need to use the same form for different products as well.

    Reply
    1. David Smith
      David Smith Staff September 10, 2012 at 9:43 am

      Hi Tanya,

      Could you tell me a little more about your scenario? Anything is possible with Gravity Forms. :)

  41. Jim
    Jim May 24, 2012 at 11:38 am

    hi David,

    I am actually trying to generate a form dynamically. See if you can help me.

    The link is:

    http://theteachertrainer.co.uk/course-calendar/

    If a student selects a COURSE (e.g. PTLLS), then a dynamic field of Location (e.g. LONDON) and once location is also selected then a dynamic field of Date (e.g. 30th May 2012) comes and as soon as the date is selected a dynamic field of price should state for that particular course.

    The Price field can derive its value from the course field.

    Now, i am not being able to apply this theory somehow.

    Your help would be appreciated David.

    Regards,

    Jim

    Reply
    1. David Smith
      David Smith Staff May 25, 2012 at 8:42 am

      Hi Jim,

      I’ve sent you an email with some questions. Figured there might be some back and forth better suited to email. :)

Leave a Reply

Your email address will not be published. Required fields are marked *

  • Trouble installing this snippet? See our troubleshooting tips.
  • Need to include code? Create a gist and link to it in your comment.
  • Reporting a bug? Provide a URL where this issue can be recreated.

By commenting, I understand that I may receive emails related to Gravity Wiz and can unsubscribe at any time.

Grab a bundle of free Gravity Forms plugins

Enter your email and receive our most popular free plugins and snippets, plus access to hundreds of others.

This field is for validation purposes and should be left unchanged.