<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Display users who submitted form on the page where the form was submitted</title>
		<link>https://legacy.forums.gravityhelp.com/topic/display-users-who-submitted-form-on-the-page-where-the-form-was-submitted</link>
		<description>Gravity Support Forums Topic: Display users who submitted form on the page where the form was submitted</description>
		<language>en-US</language>
		<pubDate>Sat, 18 Apr 2026 12:39:48 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/display-users-who-submitted-form-on-the-page-where-the-form-was-submitted" rel="self" type="application/rss+xml" />

		<item>
			<title>Daniel Foltynek on "Display users who submitted form on the page where the form was submitted"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-users-who-submitted-form-on-the-page-where-the-form-was-submitted#post-323742</link>
			<pubDate>Fri, 14 Jun 2013 17:44:33 +0000</pubDate>
			<dc:creator>Daniel Foltynek</dc:creator>
			<guid isPermaLink="false">323742@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi again, I have attached screenshots to explain it better to how to display &#34;{embed_post:post_title}&#34; with its URL of the succesfully created portfolio of the submitted form after succesfull submission in the list one row by one in the post ?&#60;br /&#62;
I would like to have a list of submitters of the current post in the post with URL to the newly created form&#60;br /&#62;
Here is the screenshot of the post how I would like to have it.&#60;br /&#62;
post before submissions screenshot 1: &#60;a href=&#34;http://4ella.com/tour/screen1.png&#34; rel=&#34;nofollow&#34;&#62;http://4ella.com/tour/screen1.png&#60;/a&#62;&#60;br /&#62;
post after five successful submissions screenshot 2: &#60;a href=&#34;http://4ella.com/tour/screen2.png&#34; rel=&#34;nofollow&#34;&#62;http://4ella.com/tour/screen2.png&#60;/a&#62;&#60;br /&#62;
Example page is here: &#60;a href=&#34;http://4ella.com/2011/12/blue-moon-roma-2/&#34; rel=&#34;nofollow&#34;&#62;http://4ella.com/2011/12/blue-moon-roma-2/&#60;/a&#62;&#60;br /&#62;
thanks Daniel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Daniel Foltynek on "Display users who submitted form on the page where the form was submitted"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-users-who-submitted-form-on-the-page-where-the-form-was-submitted#post-307888</link>
			<pubDate>Fri, 07 Jun 2013 04:51:08 +0000</pubDate>
			<dc:creator>Daniel Foltynek</dc:creator>
			<guid isPermaLink="false">307888@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have also asked the same question on wordpress forum and they redirected me to the excelent Gravity Help  Documentation so I promise that next time first of all I will search for all answers there:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#60;/a&#62;&#60;br /&#62;
I will ask you for the help anyway because I am sure that I will never be able to display in the post where is the CPT form this (I will better write it something as a mix html and query):&#60;br /&#62;
With the help of your example from documentation I want to achieve this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//changing post content
    $post-&#38;gt;post_content = &#38;lt;div class=&#38;quot;portfolio-submitters&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;URL OF THE SUBMITTED FORM TITLE&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;http://www.mysite.com/flags/{COUNTRY:16}.png&#38;quot;&#38;gt;{Name:36}({AGE:28})&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;example from GF Help documentation:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
add_action(&#38;quot;gform_after_submission&#38;quot;, &#38;quot;set_post_content&#38;quot;, 10, 2);
function set_post_content($entry, $form){

    //getting post
    $post = get_post($entry[&#38;quot;post_id&#38;quot;]);

    //changing post content
    $post-&#38;gt;post_content = &#38;quot;Blender Version:&#38;quot; . $entry[7] . &#38;quot;&#38;lt;br/&#38;gt; &#38;lt;img src=&#38;#39;&#38;quot; . $entry[8] . &#38;quot;&#38;#39;&#38;gt; &#38;lt;br/&#38;gt; &#38;lt;br/&#38;gt; &#38;quot; . $entry[13] . &#38;quot; &#38;lt;br/&#38;gt; &#38;lt;img src=&#38;#39;&#38;quot; . $entry[5] . &#38;quot;&#38;#39;&#38;gt;&#38;quot;;

    //updating post
    wp_update_post($post);
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Daniel Foltynek on "Display users who submitted form on the page where the form was submitted"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-users-who-submitted-form-on-the-page-where-the-form-was-submitted#post-302822</link>
			<pubDate>Wed, 05 Jun 2013 01:07:26 +0000</pubDate>
			<dc:creator>Daniel Foltynek</dc:creator>
			<guid isPermaLink="false">302822@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am wondering if this should be done, I have 2000 nightclubs on my site already created mostly with gravity forms by real nightclub owners, I have created another small form which I am going to insert on the bottom of every post in batch via shortcodes and via MySQL where after comes job applicants to ask for the job , they fill in the personal info about them and they send it to the author of the post and to me=administrator via confirmation emails.&#60;br /&#62;
 I have created for job applicants custom post type=portfolio and all submissions is also displayed on portfolio pages, every job applicant's name is a title of every custom post type submission something like &#60;a href=&#34;http://www.mywebsite.com/portfolio/petra/&#34; rel=&#34;nofollow&#34;&#62;http://www.mywebsite.com/portfolio/petra/&#60;/a&#62; .&#60;br /&#62;
 I would like to display those names = titles of the custom post types portfolio on that post pages where the form was submitted, like this other applicants can see how every virtual nightclub is frequented, can this be done ? I was thinking to create custom post field for every nightclub and there store those submitters, how can I tell to gravity form to store applicants names = submitted form titles in those custom fields?&#60;br /&#62;
On every nightclub page where the form were submitted should be a list of applicant's names with links to every applicant portfolio.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
