<?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: A visual editor in Gravity forms ?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms</link>
		<description>Gravity Support Forums Topic: A visual editor in Gravity forms ?</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 21:14:32 +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/a-visual-editor-in-gravity-forms" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37742</link>
			<pubDate>Wed, 12 Oct 2011 17:54:36 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">37742@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Just a quick note.  Adding the ability to incorporate the TinyMCE editor with paragraph fields is an option we plan on adding in the future.  We haven't done so yet because we don't want to have to bundle our own rich text editor script with Gravity Forms and would rather incorporate what WordPress already provides.&#60;/p&#62;
&#60;p&#62;Unfortunately the way WordPress uses TinyMCE doesn't not lend itself well to being utilized by other plugins, especially on the front end.&#60;/p&#62;
&#60;p&#62;The good news is WordPress 3.3 will be changing this and introducing an API that can be used so plugins and themes can make use of the Tiny MCE editor.  So this is definitely a feature we will be adding in the future by taking advantage of new functionality coming in WordPress 3.3.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Francois on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37721</link>
			<pubDate>Wed, 12 Oct 2011 15:32:17 +0000</pubDate>
			<dc:creator>Francois</dc:creator>
			<guid isPermaLink="false">37721@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Now it's OK with the following code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;wp-content/plugins/gravityforms/js/tiny_mce/tiny_mce.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
	tinyMCE.init({
		// General options
		mode : &#38;quot;textareas&#38;quot;,
		theme : &#38;quot;advanced&#38;quot;,
		theme_advanced_toolbar_location : &#38;quot;top&#38;quot;,
		theme_advanced_toolbar_align : &#38;quot;left&#38;quot;,
		theme_advanced_statusbar_location : &#38;quot;bottom&#38;quot;,
		theme_advanced_resizing : true,
});
&#38;lt;/script&#38;gt;
&#38;lt;textarea id=&#38;quot;elm1&#38;quot; name=&#38;quot;elm1&#38;quot; rows=&#38;quot;15&#38;quot; cols=&#38;quot;10&#38;quot; style=&#38;quot;width: 80%&#38;quot;&#38;gt;TEST&#38;lt;/textarea&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Francois on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37720</link>
			<pubDate>Wed, 12 Oct 2011 14:39:00 +0000</pubDate>
			<dc:creator>Francois</dc:creator>
			<guid isPermaLink="false">37720@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://postimage.org/image/26h2qy9fo/&#34; rel=&#34;nofollow&#34;&#62;http://postimage.org/image/26h2qy9fo/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37653</link>
			<pubDate>Tue, 11 Oct 2011 21:01:30 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">37653@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you post a link to your form please?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Francois on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37644</link>
			<pubDate>Tue, 11 Oct 2011 18:58:52 +0000</pubDate>
			<dc:creator>Francois</dc:creator>
			<guid isPermaLink="false">37644@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK, now it's working with that :&#60;br /&#62;
1. In the form, choose a HTML block&#60;br /&#62;
2. In the content of the HTML block, past the following code :&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[js]
&#38;lt;!-- OF COURSE YOU NEED TO ADAPT NEXT LINE TO YOUR tiny_mce.js PATH --&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;../js/tiny_mce.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
	tinyMCE.init({
		// General options
		mode : &#38;quot;textareas&#38;quot;,
		theme : &#38;quot;advanced&#38;quot;
});
&#38;lt;/script&#38;gt;
&#38;lt;textarea id=&#38;quot;elm1&#38;quot; name=&#38;quot;elm1&#38;quot; rows=&#38;quot;15&#38;quot; cols=&#38;quot;10&#38;quot; style=&#38;quot;width: 80%&#38;quot;&#38;gt;TEST&#38;lt;/textarea&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But, for me, the tinyMCE bar is under the text and not at the beginning !!??!!&#60;br /&#62;
Strange isn't it ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Francois on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37635</link>
			<pubDate>Tue, 11 Oct 2011 18:10:14 +0000</pubDate>
			<dc:creator>Francois</dc:creator>
			<guid isPermaLink="false">37635@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there really anyway to create a simple form with a large textarea that can be edited with tiny mce ? I cannot beleive that ! &#60;/p&#62;
&#60;p&#62;About CKEditor, you said that it was supler simple. Can you explain more in detail how to do ?&#60;/p&#62;
&#60;p&#62;Thank's in advance for your support and your help
&#60;/p&#62;</description>
		</item>
		<item>
			<title>taprootcreative on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37499</link>
			<pubDate>Mon, 10 Oct 2011 20:23:27 +0000</pubDate>
			<dc:creator>taprootcreative</dc:creator>
			<guid isPermaLink="false">37499@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;With CKEditor it's super simple. Just use this method:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://docs.cksource.com/CKEditor_3.x/Developers_Guide/jQuery_Adapter&#34; rel=&#34;nofollow&#34;&#62;http://docs.cksource.com/CKEditor_3.x/Developers_Guide/jQuery_Adapter&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Give you textarea a class, from the advanced tab and plop in the relevant code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$( &#38;#39;textarea.editor&#38;#39; ).ckeditor();&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37490</link>
			<pubDate>Mon, 10 Oct 2011 17:15:20 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">37490@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, I've done it. I'm not going into installation instructions here.. that's a customization thing &#38;amp; out of the scope of normal support. You can find the installation documentation here. They've got everything you need to know to get it running.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.tinymce.com/wiki.php/Installation&#34; rel=&#34;nofollow&#34;&#62;http://www.tinymce.com/wiki.php/Installation&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://docs.cksource.com/&#34; rel=&#34;nofollow&#34;&#62;http://docs.cksource.com/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Francois on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-37486</link>
			<pubDate>Mon, 10 Oct 2011 16:47:34 +0000</pubDate>
			<dc:creator>Francois</dc:creator>
			<guid isPermaLink="false">37486@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You said : &#34;it's relatively easy to add the support using one of the free solutions like TinyMCE, CKEditor, etc.&#34;&#60;br /&#62;
But do you know how ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>job78 on "A visual editor in Gravity forms ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/a-visual-editor-in-gravity-forms#post-35244</link>
			<pubDate>Wed, 14 Sep 2011 09:01:58 +0000</pubDate>
			<dc:creator>job78</dc:creator>
			<guid isPermaLink="false">35244@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you very much Kevin for your quick reply !
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
