<?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: Ckeditor Integration (mark-up lost)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/ckeditor-integration-mark-up-lost</link>
		<description>Gravity Support Forums Topic: Ckeditor Integration (mark-up lost)</description>
		<language>en-US</language>
		<pubDate>Tue, 07 Apr 2026 10:12:21 +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/ckeditor-integration-mark-up-lost" rel="self" type="application/rss+xml" />

		<item>
			<title>Riks on "Ckeditor Integration (mark-up lost)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/ckeditor-integration-mark-up-lost#post-46418</link>
			<pubDate>Sun, 15 Jan 2012 08:10:40 +0000</pubDate>
			<dc:creator>Riks</dc:creator>
			<guid isPermaLink="false">46418@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've been trying to get exactly the same thing going with both ckeditor and tinymce - I've managed to get them both running to an extent.&#60;/p&#62;
&#60;p&#62;Regarding your problem - what type of field are you using? If it's a 'Paragraph Text' field, don't expect much html to work. Try a 'post body' field instead, it should work better. With ckeditor, remember to change the input field too.&#60;/p&#62;
&#60;p&#62;Good luck!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tmac2627 on "Ckeditor Integration (mark-up lost)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/ckeditor-integration-mark-up-lost#post-46286</link>
			<pubDate>Fri, 13 Jan 2012 11:25:52 +0000</pubDate>
			<dc:creator>tmac2627</dc:creator>
			<guid isPermaLink="false">46286@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok so after putting together multiple threads here I managed to get CKEditor integrated into my gravity form.&#38;nbsp; To have that double checked, this is how i did it.&#60;/p&#62;
&#60;p&#62;1. Downloaded CKEditor and dumped the full zip contents into a web directory&#60;br /&#62;
2. Conveniently my theme had a settings page in the Wordpress Admin section and within that it had a field labeled&#60;br /&#62;
&#60;blockquote&#62;Additional head HTML&#60;/blockquote&#62;
. That worked the best, and I entered the following&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;(MY FULL URL)/ckeditor/ckeditor.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3. After much trial and error... I was finally able to identified the field name as &#34;input_1_35&#34; and then entered the following into another field of the theme settings page labeled&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Additional footer HTML, right before the closing &#38;lt;/body&#38;gt; tag.&#60;/p&#62;&#60;/blockquote&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;gt;
  CKEDITOR.replace( &#38;#39;input_1_35&#38;#39; );
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;4. Then I tweaked the CKEditor toolbar by changing the entry to the following:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
	CKEDITOR.replace( &#38;#39;input_1_35&#38;#39;,
    {
        toolbar :
[
		{ name: &#38;#39;document&#38;#39;, items : [ &#38;#39;Preview&#38;#39; ] },
		{ name: &#38;#39;clipboard&#38;#39;, items : [ &#38;#39;Cut&#38;#39;,&#38;#39;Copy&#38;#39;,&#38;#39;Paste&#38;#39;,&#38;#39;PasteText&#38;#39;,&#38;#39;PasteFromWord&#38;#39;,&#38;#39;-&#38;#39;,&#38;#39;Undo&#38;#39;,&#38;#39;Redo&#38;#39; ] },
		{ name: &#38;#39;editing&#38;#39;, items : [ &#38;#39;Find&#38;#39;,&#38;#39;Replace&#38;#39;,&#38;#39;-&#38;#39;,&#38;#39;SelectAll&#38;#39;,&#38;#39;-&#38;#39;,&#38;#39;Scayt&#38;#39; ] },
		{ name: &#38;#39;insert&#38;#39;, items : [ &#38;#39;Image&#38;#39;,&#38;#39;Flash&#38;#39;,&#38;#39;Table&#38;#39;,&#38;#39;HorizontalRule&#38;#39;,&#38;#39;SpecialChar&#38;#39;,&#38;#39;PageBreak&#38;#39; ] },
                &#38;#39;/&#38;#39;,
		{ name: &#38;#39;styles&#38;#39;, items : [ &#38;#39;Styles&#38;#39;,&#38;#39;Format&#38;#39; ] },
		{ name: &#38;#39;basicstyles&#38;#39;, items : [ &#38;#39;Bold&#38;#39;,&#38;#39;Italic&#38;#39;,&#38;#39;Strike&#38;#39;,&#38;#39;-&#38;#39;,&#38;#39;RemoveFormat&#38;#39; ] },
		{ name: &#38;#39;paragraph&#38;#39;, items : [ &#38;#39;NumberedList&#38;#39;,&#38;#39;BulletedList&#38;#39;,&#38;#39;-&#38;#39;,&#38;#39;Outdent&#38;#39;,&#38;#39;Indent&#38;#39;,&#38;#39;-&#38;#39;,&#38;#39;Blockquote&#38;#39; ] },
		{ name: &#38;#39;links&#38;#39;, items : [ &#38;#39;Link&#38;#39;,&#38;#39;Unlink&#38;#39;,&#38;#39;Anchor&#38;#39; ] },
		{ name: &#38;#39;tools&#38;#39;, items : [ &#38;#39;Maximize&#38;#39; ] }
	]
    });
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So its now working and the toolbar is there and is working, the form submits without error, but all of the html markup is missing from the field in the entry within the plugin (viewed from&#60;br /&#62;
&#60;blockquote&#62;Entries&#60;/blockquote&#62;
 page) and from the outbound email the form produces.  Could anyone give me a hand what I am missing so that the mark-up (if that is the right term) is retained in the field?&#60;/p&#62;
&#60;p&#62;Big thanks in advance!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
