<?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: Help adding visual editor (TinyMCE) to post form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/help-adding-visual-editor-tinymce-to-post-form</link>
		<description>Gravity Support Forums Topic: Help adding visual editor (TinyMCE) to post form</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 13:28:40 +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/help-adding-visual-editor-tinymce-to-post-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Help adding visual editor (TinyMCE) to post form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-adding-visual-editor-tinymce-to-post-form#post-76161</link>
			<pubDate>Tue, 18 Sep 2012 19:54:38 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">76161@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What is the URL where tiny_mce.js is located?  Please post that here.  I would use that in the script tag as well so you don't have to worry about relative paths, at least for now, to make sure it works.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hopborns on "Help adding visual editor (TinyMCE) to post form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-adding-visual-editor-tinymce-to-post-form#post-76158</link>
			<pubDate>Tue, 18 Sep 2012 19:48:24 +0000</pubDate>
			<dc:creator>hopborns</dc:creator>
			<guid isPermaLink="false">76158@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I removed the space and it's still not working. I thought it could be a problem with the relative path and tried using the full path from &#60;a href=&#34;http://www&#34; rel=&#34;nofollow&#34;&#62;http://www&#60;/a&#62; on down to tiny_mce.js. That worked, but seems kludgy.  What file should the path for tiny_mce.js be given relative to?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Help adding visual editor (TinyMCE) to post form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-adding-visual-editor-tinymce-to-post-form#post-76149</link>
			<pubDate>Tue, 18 Sep 2012 18:49:56 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">76149@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I see this JavaScript error on the page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Timestamp: 9/18/2012 5:46:17 PM
Error: ReferenceError: tinyMCE is not defined
Source File: &#60;a href=&#34;http://www.fsa-cc.org/sps-editor/&#34; rel=&#34;nofollow&#34;&#62;http://www.fsa-cc.org/sps-editor/&#60;/a&#62;
Line: 153&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The script does not exist in this location:&#60;br /&#62;
&#60;a href=&#34;http://www.fsa-cc.org/wp-content/plugins/tinymce/jscripts%20/tiny_mce/tiny_mce.js&#34; rel=&#34;nofollow&#34;&#62;http://www.fsa-cc.org/wp-content/plugins/tinymce/jscripts%20/tiny_mce/tiny_mce.js&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Also, never use a space in a URL.  Please find the location of tiny_mce.js and update this call to the script with the correct URL.  Post after you have done that if it still does not work.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hopborns on "Help adding visual editor (TinyMCE) to post form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/help-adding-visual-editor-tinymce-to-post-form#post-76115</link>
			<pubDate>Tue, 18 Sep 2012 15:35:02 +0000</pubDate>
			<dc:creator>hopborns</dc:creator>
			<guid isPermaLink="false">76115@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I need help adding TinyMCE to the post form on my page at &#60;a href=&#34;http://www.fsa-cc.org/sps-editor/&#34; rel=&#34;nofollow&#34;&#62;http://www.fsa-cc.org/sps-editor/&#60;/a&#62;.  Password is testingGravity.&#60;/p&#62;
&#60;p&#62;Following directions found elsewhere on this forum, I added an HTML block with this 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/tinymce/jscripts /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>

	</channel>
</rss>
