{"id":6813,"date":"2019-06-04T19:01:00","date_gmt":"2019-06-04T23:01:00","guid":{"rendered":"http:\/\/localhost\/documentation\/"},"modified":"2024-05-06T12:47:55","modified_gmt":"2024-05-06T16:47:55","slug":"using-dynamic-population","status":"publish","type":"post","link":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/","title":{"rendered":"Dynamically Populating a Field"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-introduction\">Introduction<\/h2>\n\n\n\n<p>Using dynamic population in Gravity Forms allows you to <strong>dynamically<\/strong> populate a field with a value (or values depending on the field type). This value can be passed via Query Strings, Shortcode and\/or Hooks. This walk-through will give you an example of how to use each method of dynamic population to dynamically populate a field on your form!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-getting-started\">Getting Started<\/h2>\n\n\n\n<p class=\"alert_yellow pad_20\"><strong>IMPORTANT<\/strong>: The <strong>Dynamic<\/strong> Population feature uses <strong>PHP<\/strong> to get the value(s) and populate the form field(s). Therefore it can&#8217;t be used in cached pages. This is not a Gravity Forms limitation but a consequence of using caching, which prevents PHP code from running.<\/p>\n\n\n\n<p>There are three steps to configuring dynamic population:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Specify <strong>which<\/strong> field should be populated<\/li>\n\n\n\n<li>Configure <strong>how<\/strong> the field should be populated<\/li>\n\n\n\n<li>Determine <strong>what<\/strong> value the field should be populated with<\/li>\n<\/ol>\n\n\n\n<p>To get started, let&#8217;s talk about specifying <strong>which<\/strong> field should be populated. To specify a field for dynamic population, just click the <em><a href=\"\/allow-field-to-be-populated-dynamically\" data-autolink=\"autolink_allow-field-to-be-populated-dynamically\">Allow Field To Be Populated Dynamically<\/a><\/em> checkbox on the field&#8217;s advanced tab. Doing so will display a text field labeled <em>Parameter Name<\/em>. The value entered here will act as a reference to this field so Gravity Forms knows which field to populate.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"alert_yellow pad_20\"><strong>Please note<\/strong>: Avoid using a parameter name from this <a href=\"https:\/\/developer.wordpress.org\/reference\/functions\/register_taxonomy\/#reserved-terms\">list of reserved WordPress terms<\/a>.  One commonly used parameter that is a Reserved Term is &#8216;name&#8217;, which will result in a 404 Not Found error.<\/p>\n\n\n\n<p>Once you&#8217;ve entered your parameter name, you&#8217;re ready to decide <em>how<\/em> you want to populate the field.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-query-string\">Query String<\/h2>\n\n\n\n<p>You can populate a field via the query string by appending the dynamic population parameter you specified for the field to the end of your form URL along with your custom value.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\nhttp:\/\/siteurl.com\/form-url\/?your_parameter=value\n<\/pre><\/div>\n\n\n<p>Assuming that a Gravity Form is on the page at this URL, any field with the dynamic population parameter name <em>your_parameter<\/em> would be populated with the value <em>value<\/em>.<\/p>\n\n\n\n<p>When choosing the parameter name for your fields, be sure to avoid using any of the <a href=\"https:\/\/codex.wordpress.org\/Reserved_Terms\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress reserved terms<\/a>. Best practice is to use your own prefix to make your parameter names unique. For example, use <em>sa_number<\/em> instead of <em>number<\/em>.<\/p>\n\n\n\n<p>In order to pre-select checkbox fields and multiselect fields, provide a comma-separated list of values. Values to be pre-selected in choice based fields are case sensitive. <\/p>\n\n\n\n<p class=\"alert_yellow pad_20\">Some hosts using aggressive caching techniques, like WP Engine, are known to <a href=\"https:\/\/wpengine.com\/support\/utm-gclid-variables-caching\/\" target=\"_blank\" rel=\"noreferrer noopener\">cache not only pages but also query string parameters<\/a>. So if you&#8217;re having trouble getting your fields dynamically populated, please double check your page and query string parameters are not cached.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-is-this-method-useful\">When is this method useful?<\/h3>\n\n\n\n<p>Let&#8217;s say you have a list of real estate agents you&#8217;re displaying on your website. Each agent has a link to a contact form so users can contact each agent directly. Instead of creating a separate contact form for each agent, you can add the agent&#8217;s email as a parameter to the contact form link and set up an email field to be dynamically populated by that parameter name.<\/p>\n\n\n\n<p>Don&#8217;t want the dynamically populated field to be visible to the user so they can&#8217;t modify the populated value? Easy. Just check <em>Administrative<\/em> under the <em>Visibility<\/em> option on the field&#8217;s advanced tab.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-shortcode\">Shortcode<\/h2>\n\n\n\n<p>You can populate a field via the Gravity Forms shortcode by adding the <strong>field_values<\/strong> parameter. The <strong>field_values<\/strong> parameter accepts multiple dynamic population parameters separated by an ampersand (&amp;).<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;gravityform id=\"1\" field_values=\"parameter_name1=value1&amp;amp;parameter_name2=value2\"]\n<\/pre><\/div>\n\n\n<p>In this example, any fields with the dynamic population parameter <strong>parameter_name1<\/strong> would be populated with <strong>value1<\/strong>. Fields with the dynamic population parameter <strong>parameter2<\/strong> would be populated by <strong>value2<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-is-this-method-useful-0\">When is this method useful?<\/h3>\n\n\n\n<p>Dynamically populating by shortcode can be useful when you are creating different posts that use the same form but require a custom value depending on which post the form is displayed on.<\/p>\n\n\n\n<p>Imagine you have a few events you&#8217;d like to register attendees for. You&#8217;ve set up a post for each event and want to use the same registration form for each, changing only the event name in the form based on the event post from which the user is registering.<\/p>\n\n\n\n<p>To do this you would set the dynamic population parameter of the event field to something like <strong>event_name<\/strong> and then pass this parameter with the actual event name in the Gravity Forms shortcode like so:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;gravityforms id=\"1\" field_values=\"event_name=My Awesome Event\"]\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-block\">Block<\/h2>\n\n\n\n<p>You can populate a field via the Gravity Forms block by using the Field Values text box available in the Advanced tab of a Gravity Forms block. The field values text box accepts multiple dynamic population parameters separated by an ampersand (&amp;).<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nparameter_name1=value1&amp;amp;parameter_name2=value2\n<\/pre><\/div>\n\n\n<p>In this example, any fields with the dynamic population parameter parameter_name1 would be populated with value1. Fields with the dynamic population parameter parameter2 would be populated by value2. If the Preview setting is also enabled in the current block&#8217;s Advanced tab you will see the block update in real time with the dynamically populated values in the editor.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-is-this-method-useful-1\">When is this method useful?<\/h3>\n\n\n\n<p>This method provides the same benefits described in the Shortcode method above but in a more modern user friendly manner.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hooks\">Hooks<\/h2>\n\n\n\n<p>If you aren&#8217;t familiar with PHP and\/or hooks, don&#8217;t be intimidated by this method for populating your fields. It&#8217;s really quite easy. Let&#8217;s start with this super basic sample code.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\nadd_filter( 'gform_field_value_your_parameter', 'my_custom_population_function' );\nfunction my_custom_population_function( $value ) {\n    return 'boom!';\n}\n<\/pre><\/div>\n\n\n<p>This snippet would populate any field with the parameter <em>your_parameter<\/em> with the result of the function <strong>my_custom_population_function<\/strong>. In this example, that function returns the string <em>boom!<\/em>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-when-is-this-method-useful-2\">When is this method useful?<\/h3>\n\n\n\n<p>When <em>isn&#8217;t<\/em> this method useful? This method allows for the most flexible dynamic population but also requires a bit more knowledge to use. If you&#8217;d like to better understand this method check out the documentation on the <a href=\"\/gform_field_value_parameter_name\" data-autolink=\"autolink_gform_field_value_parameter_name\">gform_field_value_parameter_name<\/a> filter as well as a more <a href=\"\/dynamically-populating-the-post-author\" data-autolink=\"autolink_dynamically-populating-the-post-author\">Dynamically Populating The Post Author<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-placement\">Placement<\/h3>\n\n\n\n<p>This code can be placed in the <a href=\"http:\/\/codex.wordpress.org\/Theme_Development#Functions_File\">functions.php<\/a> file of the active theme, a custom functions plugin, or custom add-on. See also: <a href=\"https:\/\/docs.gravityforms.com\/where-do-i-put-this-code\/#h-php\">Where Do I Put This Code?<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-known-limitations\">Known Limitations<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ampersands cannot be used as a field name\/parameter or value.<\/li>\n\n\n\n<li>The <strong>Dynamic<\/strong> Population feature uses <strong>PHP<\/strong> to get the value(s) and populate the form field(s). Therefore it can&#8217;t be used in cached pages. This is not a Gravity Forms limitation but a consequence of using caching, which prevents PHP code from running.<\/li>\n\n\n\n<li>Avoid using these <a href=\"https:\/\/codex.wordpress.org\/Reserved_Terms\">reserved WordPress terms<\/a>. One commonly used parameter is <strong>name<\/strong> which will result in a <code>404 Not Found<\/code> error, because <strong>name<\/strong> is on the list of reserved WordPress terms.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"Using dynamic population in Gravity Forms allows you to dynamically populate a field with a value (or values depending on the field type).","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_autodraft_ids":null,"jetpack_post_was_ever_published":false,"_sb_is_suggestion_mode":false,"_sb_show_suggestion_boards":false,"_sb_show_comment_boards":false,"_sb_suggestion_history":"","_sb_update_block_changes":"","_is_real_time_mode":false,"_realtime_collaborators":"","footnotes":"","cf_checklist_status":[]},"categories":[177],"tags":[],"class_list":["post-6813","post","type-post","status-publish","format-standard","hentry","category-how-to","wpautop"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Dynamically Populating a Field - Gravity Forms Documentation<\/title>\n<meta name=\"description\" content=\"This walk-through will give you and example of how to use each method of dynamic population to dynamically populate a field on your form!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/docs.gravityforms.com\/using-dynamic-population\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dynamically Populating a Field\" \/>\n<meta property=\"og:description\" content=\"This walk-through will give you and example of how to use each method of dynamic population to dynamically populate a field on your form!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.gravityforms.com\/using-dynamic-population\/\" \/>\n<meta property=\"og:site_name\" content=\"Gravity Forms Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-04T23:01:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-06T16:47:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2023\/08\/gf-docs-default-v3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"544\" \/>\n\t<meta property=\"og:image:height\" content=\"288\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Justin Pakes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@gravityforms\" \/>\n<meta name=\"twitter:site\" content=\"@gravityforms\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Justin Pakes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/using-dynamic-population\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/using-dynamic-population\\\/\"},\"author\":{\"name\":\"Justin Pakes\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/person\\\/8a88745ec2ee5bc1bb24eea8634bf376\"},\"headline\":\"Dynamically Populating a Field\",\"datePublished\":\"2019-06-04T23:01:00+00:00\",\"dateModified\":\"2024-05-06T16:47:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/using-dynamic-population\\\/\"},\"wordCount\":1067,\"publisher\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\"},\"articleSection\":[\"How To\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/using-dynamic-population\\\/\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/using-dynamic-population\\\/\",\"name\":\"Dynamically Populating a Field - Gravity Forms Documentation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#website\"},\"datePublished\":\"2019-06-04T23:01:00+00:00\",\"dateModified\":\"2024-05-06T16:47:55+00:00\",\"description\":\"This walk-through will give you and example of how to use each method of dynamic population to dynamically populate a field on your form!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/using-dynamic-population\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/docs.gravityforms.com\\\/using-dynamic-population\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/using-dynamic-population\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/docs.gravityforms.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dynamically Populating a Field\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#website\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/\",\"name\":\"Gravity Forms Documentation\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/docs.gravityforms.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\",\"name\":\"Gravity Forms\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/gravity-forms-2020-logo-stacked.png\",\"contentUrl\":\"https:\\\/\\\/docs.gravityforms.com\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/gravity-forms-2020-logo-stacked.png\",\"width\":392,\"height\":515,\"caption\":\"Gravity Forms\"},\"image\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/gravityforms\",\"http:\\\/\\\/@gravityforms.com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/person\\\/8a88745ec2ee5bc1bb24eea8634bf376\",\"name\":\"Justin Pakes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"caption\":\"Justin Pakes\"},\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/author\\\/pakes\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Dynamically Populating a Field - Gravity Forms Documentation","description":"This walk-through will give you and example of how to use each method of dynamic population to dynamically populate a field on your form!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/","og_locale":"en_US","og_type":"article","og_title":"Dynamically Populating a Field","og_description":"This walk-through will give you and example of how to use each method of dynamic population to dynamically populate a field on your form!","og_url":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/","og_site_name":"Gravity Forms Documentation","article_published_time":"2019-06-04T23:01:00+00:00","article_modified_time":"2024-05-06T16:47:55+00:00","og_image":[{"width":544,"height":288,"url":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2023\/08\/gf-docs-default-v3.png","type":"image\/png"}],"author":"Justin Pakes","twitter_card":"summary_large_image","twitter_creator":"@gravityforms","twitter_site":"@gravityforms","twitter_misc":{"Written by":"Justin Pakes","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/#article","isPartOf":{"@id":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/"},"author":{"name":"Justin Pakes","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/person\/8a88745ec2ee5bc1bb24eea8634bf376"},"headline":"Dynamically Populating a Field","datePublished":"2019-06-04T23:01:00+00:00","dateModified":"2024-05-06T16:47:55+00:00","mainEntityOfPage":{"@id":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/"},"wordCount":1067,"publisher":{"@id":"https:\/\/docs.gravityforms.com\/#organization"},"articleSection":["How To"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/","url":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/","name":"Dynamically Populating a Field - Gravity Forms Documentation","isPartOf":{"@id":"https:\/\/docs.gravityforms.com\/#website"},"datePublished":"2019-06-04T23:01:00+00:00","dateModified":"2024-05-06T16:47:55+00:00","description":"This walk-through will give you and example of how to use each method of dynamic population to dynamically populate a field on your form!","breadcrumb":{"@id":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.gravityforms.com\/using-dynamic-population\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.gravityforms.com\/using-dynamic-population\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.gravityforms.com\/"},{"@type":"ListItem","position":2,"name":"Dynamically Populating a Field"}]},{"@type":"WebSite","@id":"https:\/\/docs.gravityforms.com\/#website","url":"https:\/\/docs.gravityforms.com\/","name":"Gravity Forms Documentation","description":"","publisher":{"@id":"https:\/\/docs.gravityforms.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.gravityforms.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.gravityforms.com\/#organization","name":"Gravity Forms","url":"https:\/\/docs.gravityforms.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/logo\/image\/","url":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2020\/01\/gravity-forms-2020-logo-stacked.png","contentUrl":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2020\/01\/gravity-forms-2020-logo-stacked.png","width":392,"height":515,"caption":"Gravity Forms"},"image":{"@id":"https:\/\/docs.gravityforms.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/gravityforms","http:\/\/@gravityforms.com"]},{"@type":"Person","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/person\/8a88745ec2ee5bc1bb24eea8634bf376","name":"Justin Pakes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","caption":"Justin Pakes"},"url":"https:\/\/docs.gravityforms.com\/author\/pakes\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pdGaEa-1LT","_links":{"self":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/6813","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/comments?post=6813"}],"version-history":[{"count":22,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/6813\/revisions"}],"predecessor-version":[{"id":38842,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/6813\/revisions\/38842"}],"wp:attachment":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/media?parent=6813"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/categories?post=6813"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/tags?post=6813"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}