<?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: Text field cut off after 201 characters</title>
		<link>https://legacy.forums.gravityhelp.com/topic/text-field-cut-off-after-201-characters</link>
		<description>Gravity Support Forums Topic: Text field cut off after 201 characters</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 08:24:25 +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/text-field-cut-off-after-201-characters" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Text field cut off after 201 characters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/text-field-cut-off-after-201-characters#post-72061</link>
			<pubDate>Wed, 22 Aug 2012 08:05:10 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">72061@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the update Han
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hegeman on "Text field cut off after 201 characters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/text-field-cut-off-after-201-characters#post-72045</link>
			<pubDate>Wed, 22 Aug 2012 04:05:39 +0000</pubDate>
			<dc:creator>hegeman</dc:creator>
			<guid isPermaLink="false">72045@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris,&#60;/p&#62;
&#60;p&#62;Perfect, that simple line did it. Thanks a lot for pointing this out.&#60;br /&#62;
You've been a great help.&#60;/p&#62;
&#60;p&#62;Thanks, Han
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Text field cut off after 201 characters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/text-field-cut-off-after-201-characters#post-71325</link>
			<pubDate>Thu, 16 Aug 2012 11:54:56 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">71325@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm guessing that there are just carriage returns in the paragraphs, and those need to be converted to HTML.  Try the &#60;a href=&#34;http://php.net/manual/en/function.nl2br.php&#34; rel=&#34;nofollow&#34;&#62;nl2br function&#60;/a&#62; before you echo the value:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
echo nl2br($entryfield[&#38;#39;field_id&#38;#39;]);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>hegeman on "Text field cut off after 201 characters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/text-field-cut-off-after-201-characters#post-71320</link>
			<pubDate>Thu, 16 Aug 2012 11:41:34 +0000</pubDate>
			<dc:creator>hegeman</dc:creator>
			<guid isPermaLink="false">71320@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for your response Chris. I have come a long way now using this function. One additiional question... is there a way to make it show the paragraphs that are in the field. Now it's just one big block of text...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Text field cut off after 201 characters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/text-field-cut-off-after-201-characters#post-71317</link>
			<pubDate>Thu, 16 Aug 2012 11:32:52 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">71317@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The longer text fields are stored in the rg_leads_long table.  You probably want to use this function:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
get_field_value_long($lead, $field_number, $form, $apply_filter=true)&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It's defined in forms_model.php around line 2431 if you'd like to take a look at how it works.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hegeman on "Text field cut off after 201 characters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/text-field-cut-off-after-201-characters#post-71315</link>
			<pubDate>Thu, 16 Aug 2012 11:31:56 +0000</pubDate>
			<dc:creator>hegeman</dc:creator>
			<guid isPermaLink="false">71315@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok, found a solution in the forum after all, see:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/data-paragraph-text-missing#post-4575&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/data-paragraph-text-missing#post-4575&#60;/a&#62;&#60;br /&#62;
and&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/rgformsmodelget_leads-returns-short-entry-text&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/rgformsmodelget_leads-returns-short-entry-text&#60;/a&#62;&#60;br /&#62;
and&#60;br /&#62;
&#60;a href=&#34;http://wordpress.org/support/topic/plugin-gravity-forms-directory-missing-argument-3&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/plugin-gravity-forms-directory-missing-argument-3&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hegeman on "Text field cut off after 201 characters"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/text-field-cut-off-after-201-characters#post-71301</link>
			<pubDate>Thu, 16 Aug 2012 10:55:55 +0000</pubDate>
			<dc:creator>hegeman</dc:creator>
			<guid isPermaLink="false">71301@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I use the function RGFormsModel::get_leads($form_id) to retrieve form entries. I loop trough this with a foreach function and than echo the field content using something like $entryfield['field_id']. This all works fine except for one thing.&#60;br /&#62;
In a text field the content get's cut off after 201 characters. The content is in the database, it just does not show up.&#60;br /&#62;
What can I do to make it show?&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
