<?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 Tag: dev - Recent Topics</title>
		<link>https://legacy.forums.gravityhelp.com/tags/dev</link>
		<description>Gravity Support Forums Tag: dev - Recent Topics</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 16:33:26 +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/tags/dev/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>impres on "Exporting entries with checkboxes grouped"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/exporting-entries-with-checkboxes-grouped#post-187892</link>
			<pubDate>Thu, 28 Mar 2013 11:21:20 +0000</pubDate>
			<dc:creator>impres</dc:creator>
			<guid isPermaLink="false">187892@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have just finished creating a pretty large form with about 30 checkbox group fields. Each of these items is a multiple choice question. I would like to be able to create an export file with the labels for these groups as a column, and each of the checked values as the value.&#60;/p&#62;
&#60;p&#62;The way export currently works, skips the group labels all together. This creates a CSV file that is nearly impossible to understand.&#60;/p&#62;
&#60;p&#62;Is there any way to do this? If it is not possible, is there some functionality I can hook into to create this myself?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>curtismchale on "Notes autoresponder"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/notes-autoresponder#post-362037</link>
			<pubDate>Thu, 04 Jul 2013 19:09:06 +0000</pubDate>
			<dc:creator>curtismchale</dc:creator>
			<guid isPermaLink="false">362037@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;My client would like to predefine the subject (and message) when they update the notes in the WordPress admin.&#60;/p&#62;
&#60;p&#62;It's a gardening site and they want to have a bunch of boiler plate text (predefined) then the custom notes text then some more boilerplate.&#60;/p&#62;
&#60;p&#62;I've looked at a bunch of hooks (gfrom_notification, gform_pre_submission) that look promising but they don't actually seem to run on the admin side. At least I'm not seeing any changes in the subject and messages that are getting sent.&#60;/p&#62;
&#60;p&#62;Here are a few code examples.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter( &#38;#39;gform_pre_submission_filter&#38;#39;, array( $this, &#38;#39;change&#38;#39; ) );

	public function change( $form ){
		$form[&#38;#39;autoResponder&#38;#39;][&#38;#39;subject&#38;#39;] = &#38;#39;custom subject&#38;#39;;

		return $form;
	} // change&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter( &#38;#39;gform_notification&#38;#39;, array( $this, &#38;#39;change&#38;#39; ), 10, 3 );

	public function change( $notification, $form, $entry ){

		$notification[&#38;#39;message&#38;#39;] = &#38;#39;custom message&#38;#39;;

		return $notification;

	} // change&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Obviously I'm using both inside a Class calling the filter inside the __construct.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lkraav on "1.7.6 - conditional logic, verified, causing jquery &#34;too much recursion&#34; error"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/176-conditional-logic-verified-causing-jquery-too-much-recursion-error#post-361770</link>
			<pubDate>Thu, 04 Jul 2013 11:51:24 +0000</pubDate>
			<dc:creator>lkraav</dc:creator>
			<guid isPermaLink="false">361770@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Export XML here &#60;a href=&#34;http://bpaste.net/show/111924/&#34; rel=&#34;nofollow&#34;&#62;http://bpaste.net/show/111924/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Josh on "Upon update 1.5 you cannot use the email field to populate the username field!"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/upon-update-15-you-cannot-use-the-email-field-to-populate-the-username-field#post-201495</link>
			<pubDate>Mon, 08 Apr 2013 17:36:14 +0000</pubDate>
			<dc:creator>Josh</dc:creator>
			<guid isPermaLink="false">201495@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have been using the User Registration add-on from some time, since 1.2 I think.&#60;/p&#62;
&#60;p&#62;I have always been updating it on my project and since now I have had no problems. As it is so good.&#60;/p&#62;
&#60;p&#62;However my Wordpress network multisite install uses the email address form field to populate both the username and email fields in the User Registration Add-On.&#60;/p&#62;
&#60;p&#62;Since updating to 1.5 I now cannot validate forms because my email form field is prompted by this message: Only lowercase letters (a-z) and numbers are allowed.&#60;/p&#62;
&#60;p&#62;I cannot revert to using non-email usernames as my client wishes it to be this way.&#60;/p&#62;
&#60;p&#62;I checked your changelog.txt file to see if you purposely done this and I cannot see any notes of this change, and am now stuck what to do. Can't seem to find anyone online with the same problem.&#60;/p&#62;
&#60;p&#62;I have reverted back to 1.4 but after checking out your changelog in 1.5, I would really like to be using 1.5.&#60;/p&#62;
&#60;p&#62;Can you help?&#60;/p&#62;
&#60;p&#62;Many thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cyteworks on "Show Empty Fields when viewing or downloading PDF"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/show-empty-fields-when-viewing-or-downloading-pdf#post-135143</link>
			<pubDate>Tue, 29 Jan 2013 10:19:04 +0000</pubDate>
			<dc:creator>cyteworks</dc:creator>
			<guid isPermaLink="false">135143@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible for &#34;Show Empty Fields&#34; to have the same effect when viewing or downloading the PDF version of the entries.  This allows us to easily see the fields that have not been completed.&#60;/p&#62;
&#60;p&#62;Thank You
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ZeadsDead on "Multiple Registration Condition"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multiple-registration-condition#post-278967</link>
			<pubDate>Sun, 26 May 2013 20:50:00 +0000</pubDate>
			<dc:creator>ZeadsDead</dc:creator>
			<guid isPermaLink="false">278967@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I need to create a form that puts users into different wordpress roles depending on their answers to the form.  The form is only visible to users who are already logged in and listed under the Subscriber Role.&#60;/p&#62;
&#60;p&#62;My thought was to use Tadlock's Membership plugin to create the roles.  Then create an &#34;Update&#34; form using the User Registration addon.&#60;/p&#62;
&#60;p&#62;Then, when the user completes the form and answers the questions, I can assign them to a new Role depending on their answers!!  ...almost.&#60;/p&#62;
&#60;p&#62;The problem is, the User Reg addon only allows for ONE condition.  Thus, my 3 question form will not work because all three answers must be marked to TRUE.&#60;/p&#62;
&#60;p&#62;Any suggestions how to accomplish this?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Bryan Monzon on "Loading gravity form via ajax"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/loading-gravity-form-via-ajax#post-92075</link>
			<pubDate>Fri, 16 Nov 2012 21:13:51 +0000</pubDate>
			<dc:creator>Bryan Monzon</dc:creator>
			<guid isPermaLink="false">92075@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey guys,&#60;/p&#62;
&#60;p&#62;I've searched here and across google to find the answer, and I've found a few people with the problem, however I haven't seen full resolution.&#60;/p&#62;
&#60;p&#62;We have a site that pulls in content templates via ajax and loads them onto the page. Some of those pages have gravity forms in their templates. While the HTML structure is being pulled in, the forms look a little bit messed up. When you hit the page with the gravity forms without ajax, the form works fine. I've confirmed that I'm grabbing everything with the ajax ( entire HTML structure, and embedded javascript that is printed out with the gravity_forms() function.&#60;/p&#62;
&#60;p&#62;Here are a couple of images that might help clarify:&#60;br /&#62;
What form looks like pulled in via ajax: &#60;a href=&#34;http://cl.ly/image/1l3E1U1Q3T2e&#34; rel=&#34;nofollow&#34;&#62;http://cl.ly/image/1l3E1U1Q3T2e&#60;/a&#62;&#60;br /&#62;
What form looks like when viewed normally: &#60;a href=&#34;http://cl.ly/image/0q051z070L1J&#34; rel=&#34;nofollow&#34;&#62;http://cl.ly/image/0q051z070L1J&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;When viewed normally, the form works perfectly, and submits via ajax perfectly. My guess is that there is some javascript function that needs to fire, that isn't running when it's pulled in via ajax.&#60;/p&#62;
&#60;p&#62;Thanks in advance for your help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vernal on "All fields have gone missing"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/all-fields-have-gone-missing#post-319178</link>
			<pubDate>Wed, 12 Jun 2013 17:20:04 +0000</pubDate>
			<dc:creator>vernal</dc:creator>
			<guid isPermaLink="false">319178@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I recently upgraded to 1.7.5 and seem to have lost a whole bunch of data.&#60;br /&#62;
All of my form fields are gone, and entries are mostly blank.&#60;br /&#62;
I've disabled all other plugins and made this video:&#60;br /&#62;
&#60;a href=&#34;http://screencast.com/t/XuKy5Tikrl&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/XuKy5Tikrl&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Ideas?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tracey Grady on "Quiz add-on question field styling"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/quiz-add-on-question-field-styling#post-234187</link>
			<pubDate>Thu, 02 May 2013 20:01:40 +0000</pubDate>
			<dc:creator>Tracey Grady</dc:creator>
			<guid isPermaLink="false">234187@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a feature request and a bug report (a minor one) for the Quiz add-on:&#60;/p&#62;
&#60;p&#62;Feature request: it would be great if we could use basic styling in question fields e.g. italics for certain words. At the moment that doesn't appear to be possible, and using em tags doesn't work (the tag displays as part of the question).&#60;/p&#62;
&#60;p&#62;Bug report: When I am editing the Confirmation message and I opt to switch forms, the Quiz add-on switches to the different form and creates a new Confirmation message instead of opening the existing one. However it isn't obvious that a new Confirmation message has been created, and this can be confusing.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>microweb on "User Registration Not saving Display Name"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-registration-not-saving-display-name#post-271377</link>
			<pubDate>Thu, 23 May 2013 17:36:48 +0000</pubDate>
			<dc:creator>microweb</dc:creator>
			<guid isPermaLink="false">271377@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am using Gravity Forms version 1.7.4 and User Registration 1.5.  On our site, the Registration Form is filled out by an admin and then login information is e-mailed to the user.  The end user is not filling out their own registration form.&#60;/p&#62;
&#60;p&#62;When I add a new user, all of the fields made correctly except for the Display name.  &#60;/p&#62;
&#60;p&#62;In the User Registration settings I set the Display name to be {first name} and I tried {first name} {last name}.  No matter what the setting, the display name is always set to the username.&#60;/p&#62;
&#60;p&#62;Could there be a setting that I missed?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
