<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Move and Position The WordPress WYSIWYG Visual Editor	</title>
	<atom:link href="https://www.farinspace.com/move-and-position-wordpress-visual-editor/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/</link>
	<description>Practical Real World Web Development</description>
	<lastBuildDate>Wed, 30 Sep 2015 19:39:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>
	<item>
		<title>
		By: Gigio		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-25408</link>

		<dc:creator><![CDATA[Gigio]]></dc:creator>
		<pubDate>Wed, 10 Oct 2012 14:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-25408</guid>

					<description><![CDATA[Daniel Nice, did you visit the link I posted?
http://wordpress.org/support/topic/move-custom-meta-box-above-editor
You pasted TroyDesign.IT&#039;s solution than has been improved here:
http://software.troydesign.it/php/wordpress/move-wp-visual-editor.html

Bye Bye]]></description>
			<content:encoded><![CDATA[<p>Daniel Nice, did you visit the link I posted?<br />
<a href="http://wordpress.org/support/topic/move-custom-meta-box-above-editor" rel="nofollow ugc">http://wordpress.org/support/topic/move-custom-meta-box-above-editor</a><br />
You pasted TroyDesign.IT&#8217;s solution than has been improved here:<br />
<a href="http://software.troydesign.it/php/wordpress/move-wp-visual-editor.html" rel="nofollow ugc">http://software.troydesign.it/php/wordpress/move-wp-visual-editor.html</a></p>
<p>Bye Bye</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Daniel Nice		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-25333</link>

		<dc:creator><![CDATA[Daniel Nice]]></dc:creator>
		<pubDate>Wed, 03 Oct 2012 15:56:37 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-25333</guid>

					<description><![CDATA[I found this code on the Wordpress form, seems to work well without any Javascript.

add_action( &#039;add_meta_boxes&#039;, &#039;action_add_meta_boxes&#039;, 0 );
function action_add_meta_boxes() {
	global $_wp_post_type_features;
	if (isset($_wp_post_type_features[&#039;post&#039;][&#039;editor&#039;]) &#038;&#038; $_wp_post_type_features[&#039;post&#039;][&#039;editor&#039;]) {
		unset($_wp_post_type_features[&#039;post&#039;][&#039;editor&#039;]);
		add_meta_box(
			&#039;description_section&#039;,
			__(&#039;Description&#039;),
			&#039;inner_custom_box&#039;,
			&#039;post&#039;, &#039;normal&#039;, &#039;high&#039;
		);
	}
	if (isset($_wp_post_type_features[&#039;page&#039;][&#039;editor&#039;]) &#038;&#038; $_wp_post_type_features[&#039;page&#039;][&#039;editor&#039;]) {
		unset($_wp_post_type_features[&#039;page&#039;][&#039;editor&#039;]);
		add_meta_box(
			&#039;description_sectionid&#039;,
			__(&#039;Description&#039;),
			&#039;inner_custom_box&#039;,
			&#039;page&#039;, &#039;normal&#039;, &#039;high&#039;
		);
	}
}
function inner_custom_box( $post ) {
	the_editor($post-&#062;post_content);
}]]></description>
			<content:encoded><![CDATA[<p>I found this code on the WordPress form, seems to work well without any Javascript.</p>
<p>add_action( &#8216;add_meta_boxes&#8217;, &#8216;action_add_meta_boxes&#8217;, 0 );<br />
function action_add_meta_boxes() {<br />
	global $_wp_post_type_features;<br />
	if (isset($_wp_post_type_features[&#8216;post&#8217;][&#8216;editor&#8217;]) &amp;&amp; $_wp_post_type_features[&#8216;post&#8217;][&#8216;editor&#8217;]) {<br />
		unset($_wp_post_type_features[&#8216;post&#8217;][&#8216;editor&#8217;]);<br />
		add_meta_box(<br />
			&#8216;description_section&#8217;,<br />
			__(&#8216;Description&#8217;),<br />
			&#8216;inner_custom_box&#8217;,<br />
			&#8216;post&#8217;, &#8216;normal&#8217;, &#8216;high&#8217;<br />
		);<br />
	}<br />
	if (isset($_wp_post_type_features[&#8216;page&#8217;][&#8216;editor&#8217;]) &amp;&amp; $_wp_post_type_features[&#8216;page&#8217;][&#8216;editor&#8217;]) {<br />
		unset($_wp_post_type_features[&#8216;page&#8217;][&#8216;editor&#8217;]);<br />
		add_meta_box(<br />
			&#8216;description_sectionid&#8217;,<br />
			__(&#8216;Description&#8217;),<br />
			&#8216;inner_custom_box&#8217;,<br />
			&#8216;page&#8217;, &#8216;normal&#8217;, &#8216;high&#8217;<br />
		);<br />
	}<br />
}<br />
function inner_custom_box( $post ) {<br />
	the_editor($post-&gt;post_content);<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gigio		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-22800</link>

		<dc:creator><![CDATA[Gigio]]></dc:creator>
		<pubDate>Tue, 17 Apr 2012 10:47:05 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-22800</guid>

					<description><![CDATA[http://wordpress.org/support/topic/move-custom-meta-box-above-editor
Look at TroyDesig&#039;s solution.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/support/topic/move-custom-meta-box-above-editor" rel="nofollow ugc">http://wordpress.org/support/topic/move-custom-meta-box-above-editor</a><br />
Look at TroyDesig&#8217;s solution.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brandon Wilson		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-21665</link>

		<dc:creator><![CDATA[Brandon Wilson]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 13:48:25 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-21665</guid>

					<description><![CDATA[I tried in vain to get this to work.  Thinking something in my theme&#039;s css was screwing it up, I tried to install this code on the default wordpress twenty_eleven theme.

Jquery (I am guessing) is the problem, anyone know exactly how to insert this into the default theme, and (once working) I can do it on my theme.

Thanks!]]></description>
			<content:encoded><![CDATA[<p>I tried in vain to get this to work.  Thinking something in my theme&#8217;s css was screwing it up, I tried to install this code on the default wordpress twenty_eleven theme.</p>
<p>Jquery (I am guessing) is the problem, anyone know exactly how to insert this into the default theme, and (once working) I can do it on my theme.</p>
<p>Thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Leo		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-19638</link>

		<dc:creator><![CDATA[Leo]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 03:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-19638</guid>

					<description><![CDATA[argh! but that does not change the way the published post (order) look!...


any ideas???]]></description>
			<content:encoded><![CDATA[<p>argh! but that does not change the way the published post (order) look!&#8230;</p>
<p>any ideas???</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Leo		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-19636</link>

		<dc:creator><![CDATA[Leo]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 03:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-19636</guid>

					<description><![CDATA[Figured it out - just add your own here:
foreach (array(&#039;page&#039;,&#039;post&#039;,&#039;custom_type&#039;, &#039;movies&#039;)]]></description>
			<content:encoded><![CDATA[<p>Figured it out &#8211; just add your own here:<br />
foreach (array(&#8216;page&#8217;,&#8217;post&#8217;,&#8217;custom_type&#8217;, &#8216;movies&#8217;)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Leo		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-19635</link>

		<dc:creator><![CDATA[Leo]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 02:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-19635</guid>

					<description><![CDATA[Thanks, but I have a question,

How to implement it in a new content type?

I created a new content type called &quot;Movies&quot;, when I create a new &quot;Movie&quot;, the editor can&#039;t me affected... only new posts does...

Any help?]]></description>
			<content:encoded><![CDATA[<p>Thanks, but I have a question,</p>
<p>How to implement it in a new content type?</p>
<p>I created a new content type called &#8220;Movies&#8221;, when I create a new &#8220;Movie&#8221;, the editor can&#8217;t me affected&#8230; only new posts does&#8230;</p>
<p>Any help?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kamal		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-15830</link>

		<dc:creator><![CDATA[Kamal]]></dc:creator>
		<pubDate>Tue, 17 May 2011 20:19:03 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-15830</guid>

					<description><![CDATA[Hi again,
The code &lt;strong&gt;duplicate&lt;/strong&gt; the form title, if the plugin &lt;strong&gt;qTranslate&lt;/strong&gt; installed. like this:
Titre (Deutsch) :
Titre (Français) :
Titre (Deutsch) :
Titre (Français) :

and it&#039;s &lt;strong&gt;impossible&lt;/strong&gt; to move the WYSIWUG

is there any solution?
thanks]]></description>
			<content:encoded><![CDATA[<p>Hi again,<br />
The code <strong>duplicate</strong> the form title, if the plugin <strong>qTranslate</strong> installed. like this:<br />
Titre (Deutsch) :<br />
Titre (Français) :<br />
Titre (Deutsch) :<br />
Titre (Français) :</p>
<p>and it&#8217;s <strong>impossible</strong> to move the WYSIWUG</p>
<p>is there any solution?<br />
thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jaume Sala		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-14833</link>

		<dc:creator><![CDATA[Jaume Sala]]></dc:creator>
		<pubDate>Sat, 07 May 2011 11:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-14833</guid>

					<description><![CDATA[Move the Position of the WordPress WYSIWYG Visual Editor below sortables boxes on edit.php only for a certain custom post. (note that you have to change custom_postype_name for the postype name)

In functions.php you have to add this code.
&lt;code&gt;
function admin_footer_hook(){
	global $post;
	if ( get_post_type($post) == &#039;custom_postype_name&#039;&#039;) {
?&#062;
	
		jQuery(&#039;#normal-sortables&#039;).insertBefore(&#039;#postdivrich&#039;);
	
&#060;?php
	}
}
add_action(&#039;admin_footer&#039;,&#039;admin_footer_hook&#039;);
&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>Move the Position of the WordPress WYSIWYG Visual Editor below sortables boxes on edit.php only for a certain custom post. (note that you have to change custom_postype_name for the postype name)</p>
<p>In functions.php you have to add this code.<br />
<code><br />
function admin_footer_hook(){<br />
	global $post;<br />
	if ( get_post_type($post) == 'custom_postype_name'') {<br />
?&gt;</p>
<p>		jQuery('#normal-sortables').insertBefore('#postdivrich');</p>
<p>&lt;?php<br />
	}<br />
}<br />
add_action(&#039;admin_footer&#039;,&#039;admin_footer_hook&#039;);<br />
</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Fang		</title>
		<link>https://www.farinspace.com/move-and-position-wordpress-visual-editor/#comment-11325</link>

		<dc:creator><![CDATA[Fang]]></dc:creator>
		<pubDate>Sat, 19 Mar 2011 05:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=922#comment-11325</guid>

					<description><![CDATA[Great idea.
Since the editor would easily break on drag-and-drop.
I simply moved #normal-sortables before #postdivrich:
&lt;blockquote&gt;

jQuery(&#039;#normal-sortables&#039;).insertBefore(&#039;#postdivrich&#039;);

&lt;/blockquote&gt;]]></description>
			<content:encoded><![CDATA[<p>Great idea.<br />
Since the editor would easily break on drag-and-drop.<br />
I simply moved #normal-sortables before #postdivrich:</p>
<blockquote>
<p>jQuery(&#8216;#normal-sortables&#8217;).insertBefore(&#8216;#postdivrich&#8217;);</p>
</blockquote>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
