<?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: Moving the Add Notes Box in 1.6</title>
		<link>https://legacy.forums.gravityhelp.com/topic/moving-the-add-notes-box-in-16</link>
		<description>Gravity Support Forums Topic: Moving the Add Notes Box in 1.6</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 19:39:22 +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/moving-the-add-notes-box-in-16" rel="self" type="application/rss+xml" />

		<item>
			<title>David Smith on "Moving the Add Notes Box in 1.6"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/moving-the-add-notes-box-in-16#post-40298</link>
			<pubDate>Mon, 07 Nov 2011 17:39:10 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">40298@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad to help. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mark.dillon on "Moving the Add Notes Box in 1.6"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/moving-the-add-notes-box-in-16#post-40293</link>
			<pubDate>Mon, 07 Nov 2011 16:45:56 +0000</pubDate>
			<dc:creator>mark.dillon</dc:creator>
			<guid isPermaLink="false">40293@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Thank you for the explanation, David!&#60;/strong&#62; Having the correct code is great—but knowing why my code &#60;em&#62;wasn’t&#60;/em&#62; correct is even more helpful. Resolved!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Moving the Add Notes Box in 1.6"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/moving-the-add-notes-box-in-16#post-40291</link>
			<pubDate>Mon, 07 Nov 2011 16:18:56 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">40291@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The problem is both textareas are named &#34;new_note&#34; and the original textarea in the left column is actually loaded lower in the page so when the page is submitted, the empty value takes precedence.&#60;/p&#62;
&#60;p&#62;You could change the name of your textarea and then update another bit of the core to save your custom field as well; however, for the sake of keeping your customzation consolidated in a single spot (making re-adding this for future versions nice and easy), I think it is easier to update the original textarea with the value of the new textarea on submit.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastie.org/2827143&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/2827143&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mark.dillon on "Moving the Add Notes Box in 1.6"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/moving-the-add-notes-box-in-16#post-40257</link>
			<pubDate>Mon, 07 Nov 2011 11:42:18 +0000</pubDate>
			<dc:creator>mark.dillon</dc:creator>
			<guid isPermaLink="false">40257@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;On the entry detail screen I would like to add a &#60;strong&#62;Notes&#60;/strong&#62; section in GF 1.6 on the right hand side— basically to make it match the notes section in GF 1.5.&#60;/p&#62;
&#60;p&#62;I placed the following code between lines 367 and 379 in the entry_detail.php file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;!-- =Begin Custom Notes Section EDITED by MD --&#38;gt;
&#38;lt;div class=&#38;quot;postbox&#38;quot;&#38;gt;
	&#38;lt;h3 style=&#38;quot;cursor:default;&#38;quot;&#38;gt;&#38;lt;span&#38;gt;Notes&#38;lt;/span&#38;gt;&#38;lt;/h3&#38;gt;
	&#38;lt;div class=&#38;quot;inside&#38;quot;&#38;gt;
		&#38;lt;textarea name=&#38;quot;new_note&#38;quot; style=&#38;quot;width:100%; height:100px; margin-bottom:4px;&#38;quot;&#38;gt;&#38;lt;/textarea&#38;gt;
			&#38;lt;?php
			$note_button = &#38;#39;&#38;lt;input type=&#38;quot;submit&#38;quot; name=&#38;quot;add_note&#38;quot; value=&#38;quot;&#38;#39; . __(&#38;quot;Add Note&#38;quot;, &#38;quot;gravityforms&#38;quot;) . &#38;#39;&#38;quot; class=&#38;quot;button&#38;quot; style=&#38;quot;width:60px;&#38;quot; onclick=&#38;quot;jQuery(\&#38;#39;#action\&#38;#39;).val(\&#38;#39;add_note\&#38;#39;);&#38;quot;/&#38;gt;&#38;#39;;
			echo apply_filters(&#38;quot;gform_addnote_button&#38;quot;, $note_button);
			?&#38;gt;
	&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;!-- =End Custom Notes Section EDITED by MD --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;As expected this code adds a new note, but each note created is &#60;em&#62;empty&#60;/em&#62;.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
