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

		<item>
			<title>Aaron Campbell on "3.6 compatibility with new UI tabs"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/36-compatibility-with-new-ui-tabs#post-197114</link>
			<pubDate>Fri, 05 Apr 2013 00:01:50 +0000</pubDate>
			<dc:creator>Aaron Campbell</dc:creator>
			<guid isPermaLink="false">197114@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;jQuery &#60;a href=&#34;http://jqueryui.com/upgrade-guide/1.9/#deprecated-select-method&#34; rel=&#34;nofollow&#34;&#62;deprecated the select method&#60;/a&#62; of tabs.  The fix for 1.7b2 is to edit js/form_editor.js and change line 496 from&#60;br /&#62;
&#60;code&#62;jQuery(&#38;quot;#field_settings&#38;quot;).tabs(&#38;quot;select&#38;quot;, 0);&#60;/code&#62;&#60;br /&#62;
to&#60;br /&#62;
&#60;code&#62;jQuery(&#38;quot;#field_settings&#38;quot;).tabs(&#38;quot;option&#38;quot;, &#38;quot;active&#38;quot;, 0);&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>semyou on "New gravity version and Roots Theme"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/new-gravity-version-and-roots-theme#post-100370</link>
			<pubDate>Sat, 08 Dec 2012 18:08:27 +0000</pubDate>
			<dc:creator>semyou</dc:creator>
			<guid isPermaLink="false">100370@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have upgraded recently to the newest release of gravity forms, and since then I am not able to see the form in my form submission page. I am using the Roots Theme. Before the upgrade it worked fine. Now it doesn't. I checked the html code of the page. I saw that for some reason the form_wrapper has a css of display:none. And there is also a jquery.min error that is thrown (seen in my firebug). Did the change alter anything that touches jquery.min?&#60;br /&#62;
For your info, I removed the Roots theme and used Twenty eleven and the problem disappeared. Unfortunately, I need Roots theme. Something happened between the two versions that broke something. Any ideas.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Youssef&#60;/p&#62;
&#60;p&#62;Youssef
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cnsx on "TypeError: value.replace is not a function"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/typeerror-valuereplace-is-not-a-function#post-164206</link>
			<pubDate>Fri, 08 Mar 2013 05:10:46 +0000</pubDate>
			<dc:creator>cnsx</dc:creator>
			<guid isPermaLink="false">164206@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I've got this javascript error while trying to edit one of my fields :&#60;/p&#62;
&#60;p&#62;Erreur : TypeError: value.replace is not a function&#60;br /&#62;
Fichier Source : &#60;a href=&#34;http://localhost/wp-admin/admin.php?page=gf_edit_forms&#38;amp;id=1&#34; rel=&#34;nofollow&#34;&#62;http://localhost/wp-admin/admin.php?page=gf_edit_forms&#38;amp;id=1&#60;/a&#62;&#60;br /&#62;
Ligne : 3283&#60;/p&#62;
&#60;p&#62;I'm using the following version of GravityForms : &#60;/p&#62;
&#60;p&#62;Version PHP 	5.3.6&#60;br /&#62;
Version MySQL 	5.5.9&#60;br /&#62;
Version de WordPress 	3.5.1&#60;br /&#62;
Version de Gravity Forms 	1.6.12 	&#60;/p&#62;
&#60;p&#62;And the field is a select prepopulated with Gravity Forms + Custom Post Types (&#60;a href=&#34;http://wordpress.org/support/plugin/gravity-forms-custom-post-types&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/plugin/gravity-forms-custom-post-types&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;It looks like the error comes from GetFieldChoices in js.php, line 866 you do this :&#60;br /&#62;
var value = field.enableChoiceValue ? field.choices[i].value : field.choices[i].text;&#60;/p&#62;
&#60;p&#62;which in my case returns a number (the id of my custom post type), thus value.replace is undefined for Int typed variables.&#60;/p&#62;
&#60;p&#62;Just replace this line with the following (cast to string) and we are good to go :&#60;br /&#62;
var value = field.enableChoiceValue ? String(field.choices[i].value) : field.choices[i].text;&#60;/p&#62;
&#60;p&#62;Any chance to see this error fixed in a next release ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jamesckemp on "Populate List Hook Error"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/populate-list-hook-error#post-146878</link>
			<pubDate>Thu, 14 Feb 2013 07:25:36 +0000</pubDate>
			<dc:creator>jamesckemp</dc:creator>
			<guid isPermaLink="false">146878@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I'm using the gform_field_value_parameter hook to pre-populate a list field with an array of data. The list field is populating, however, I'm getting the following error:&#60;/p&#62;
&#60;p&#62;Warning: explode() expects parameter 2 to be string, array given in /Applications/MAMP/htdocs/website/wp-content/plugins/gravityforms/form_display.php on line 1675&#60;/p&#62;
&#60;p&#62;This error doesn't show with debug set to false, but though it'd be worth mentioning.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TiborP on "Fatal error in combination with other CM plugin"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fatal-error-in-combination-with-other-cm-plugin#post-144550</link>
			<pubDate>Fri, 08 Feb 2013 02:52:23 +0000</pubDate>
			<dc:creator>TiborP</dc:creator>
			<guid isPermaLink="false">144550@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am using another plugin that adds newly registered users to a CM list. In combination with the GF add on there's a fatal error when submitting a GF form (note: this GF form does not use CM functionality).&#60;/p&#62;
&#60;p&#62;&#60;code&#62;Fatal error: Cannot redeclare CS_REST_SERIALISATION_get_available() (previously declared in /path-to/wp-content/plugins/ajax-cm-forms-premium/createsend-php/class/serialisation.php:7) in /path-to/wp-content/plugins/gravityformscampaignmonitor/api/class/serialisation.php on line 13&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I contacted the author of the CM-Forms Premium plugin, and got the following answer:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
My plugin checks whether the Campaign Monitor API code has been included, and only includes it if it's not already defined. It looks like the Gravity Forms plugin always includes it without checking. It seems WordPress is loading my plugin first, and then the Gravity Forms plugin.&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Would there be any solution for this? I would really like to use both plugins.&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ünsal Korkmaz on "Wigdet description translation problem"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wigdet-description-translation-problem#post-132641</link>
			<pubDate>Sat, 26 Jan 2013 17:20:48 +0000</pubDate>
			<dc:creator>Ünsal Korkmaz</dc:creator>
			<guid isPermaLink="false">132641@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I couldnt translate &#34;Gravity Forms Widget&#34; string that shows as gravity widget description. I can translate anything but this. Is it only me?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mattingly Graphics on "Time Zone Issues with CSV Export"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/time-zone-issues-with-csv-export#post-116971</link>
			<pubDate>Tue, 08 Jan 2013 18:03:53 +0000</pubDate>
			<dc:creator>Mattingly Graphics</dc:creator>
			<guid isPermaLink="false">116971@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;When entries are entered AFTER 8PM Eastern Time (New York), and then an export is done for the date those entries are made, those entries do not show. They DO show on the next day's export. However, the data in the entry fields is all correct, the issue only seems to be with the exported csv files.&#60;/p&#62;
&#60;p&#62;Example:&#60;br /&#62;
Form entry submitted on 1/7/12&#60;br /&#62;
Export downloaded on 1/8/12, and the export dates are both set to 1/7/12.&#60;br /&#62;
Any entry made AFTER 8PM on 1/7/12 does NOT appear on the export file.&#60;/p&#62;
&#60;p&#62;If the export dates are changed to 1/7/12 through 1/8/12, those entires made after 8pm on 1/7 DO appear in that csv file. The entry date shows correctly, 1/7/12, but they only show up in 1/8/12 export file.&#60;/p&#62;
&#60;p&#62;I imagine it has to do with my server being in a different time zone, and therefore MySQL is using a different time, but is there a workaround?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Goddess Dix on "Notification style too much gray space!"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/notification-style-too-much-gray-space#post-85776</link>
			<pubDate>Wed, 31 Oct 2012 13:29:03 +0000</pubDate>
			<dc:creator>Goddess Dix</dc:creator>
			<guid isPermaLink="false">85776@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello. At some point, I noticed my automatically-styled notification emails started getting a whole lot of gray space in the header before the fields actually print out. It's not on a specific form, but all of them. I do have some of the add-ons, PayPal, Registration, Polls active and it might have coincided with adding one of these or one of the GF updates, but I'm not sure because I don't get form entries every day. The first few times, I thought it was a fluke but it's been consistent.&#60;/p&#62;
&#60;p&#62;I saved one of the emails to HTML and there are somewhere around 21 br tags before the form entry table is printed. Any ideas as to where I could look to solve this? It's still functional but annoying. I don't know if the client-side notifications have the same issue or not, but the admin ones do.&#60;/p&#62;
&#60;p&#62;Here's an example of a simple contact form that does it.&#60;br /&#62;
&#60;a href=&#34;http://www.afoolsjourney.com/contact/&#34; rel=&#34;nofollow&#34;&#62;http://www.afoolsjourney.com/contact/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sadiq.emeran on "Pre Populate Help"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pre-populate-help-1#post-81168</link>
			<pubDate>Mon, 15 Oct 2012 13:13:14 +0000</pubDate>
			<dc:creator>sadiq.emeran</dc:creator>
			<guid isPermaLink="false">81168@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://pet.brandcampaigner.co.za/register/&#34; rel=&#34;nofollow&#34;&#62;http://pet.brandcampaigner.co.za/register/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I get a error when I am trying to register here cannot get past 1st&#60;/p&#62;
&#60;p&#62;1st want to test this new form I created and then work out how to pre populate fields.&#60;/p&#62;
&#60;p&#62;Any help would be appreciated.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Sadiq
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nscruggs on "phone number field does not display"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/phone-number-field-does-not-display#post-81146</link>
			<pubDate>Mon, 15 Oct 2012 12:23:21 +0000</pubDate>
			<dc:creator>nscruggs</dc:creator>
			<guid isPermaLink="false">81146@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;My phone number field does not display on the front end.  It should be under the Address field.  I tried adding a new Phone field and it dose not show up either.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://weddingsbynneka.com/price-request/&#34; rel=&#34;nofollow&#34;&#62;http://weddingsbynneka.com/price-request/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
