PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Dynamically Populate a Form With Site Title

  1. I read this post but it talks about how to populate a field dynamically with user meta data.

    http://www.gravityhelp.com/forums/topic/right-parameter-names-to-pre-populate-the-names-fields#post-14044

    How would I call the site title or tagline/description?

    Would this work if placed in functions.php? (param name is 'site_title')

    add_filter('gform_field_value_site_title', create_function("", '$value = populate_sitetitle(\'site_title\'); return $value;' ));
    function populate_sitetitle($meta_key){
        global $blog_title;
    	return $blog_title;
    }
    Posted 10 years ago on Wednesday June 12, 2013 | Permalink