<?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: Uncategorized category</title>
	<atom:link href="http://thedeadone.net/forum/?feed=rss2&#038;p=1613" rel="self" type="application/rss+xml" />
	<link>http://thedeadone.net/forum/?p=1613</link>
	<description>Wordpress Powered Forums for thedeadone.net</description>
	<lastBuildDate>Mon, 06 Sep 2010 13:00:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: ron</title>
		<link>http://thedeadone.net/forum/?p=1613#comment-3614</link>
		<dc:creator>ron</dc:creator>
		<pubDate>Thu, 05 Feb 2009 11:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://thedeadone.net/forum/?p=1613#comment-3614</guid>
		<description>that worked. I guess I didn&#039;t understand how the &lt;em&gt;overwrite default categories &lt;/em&gt;option was set up.

thanks.</description>
		<content:encoded><![CDATA[<p>that worked. I guess I didn&#8217;t understand how the <em>overwrite default categories </em>option was set up.</p>
<p>thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Cunningham</title>
		<link>http://thedeadone.net/forum/?p=1613#comment-3613</link>
		<dc:creator>Mark Cunningham</dc:creator>
		<pubDate>Thu, 05 Feb 2009 10:55:08 +0000</pubDate>
		<guid isPermaLink="false">http://thedeadone.net/forum/?p=1613#comment-3613</guid>
		<description>By default a post in TDOMF must have at least one category (unless it&#039;s a page). The &#039;default&#039; category is set in the options for the form: &quot;Default Category&quot;. This is a nice drop down list, you don&#039;t even need to know the id of the category.

Now if you want you&#039;re users to set the category themselves, you&#039;ll, obviously, need to add the category widget to the form. The first category widget on your form (top down) can be set to either add to the categories on the post already (i.e. add the default category as well as the user selected categories) or overwrite them (i.e. drop the default category and use the user selected ones only). So if you want to overwrite the default category, just make sure the option: &quot;Overwrite Default Categories&quot; to is checked.

It&#039;s a simply as that.</description>
		<content:encoded><![CDATA[<p>By default a post in TDOMF must have at least one category (unless it&#8217;s a page). The &#8216;default&#8217; category is set in the options for the form: &#8220;Default Category&#8221;. This is a nice drop down list, you don&#8217;t even need to know the id of the category.</p>
<p>Now if you want you&#8217;re users to set the category themselves, you&#8217;ll, obviously, need to add the category widget to the form. The first category widget on your form (top down) can be set to either add to the categories on the post already (i.e. add the default category as well as the user selected categories) or overwrite them (i.e. drop the default category and use the user selected ones only). So if you want to overwrite the default category, just make sure the option: &#8220;Overwrite Default Categories&#8221; to is checked.</p>
<p>It&#8217;s a simply as that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ron</title>
		<link>http://thedeadone.net/forum/?p=1613#comment-3573</link>
		<dc:creator>ron</dc:creator>
		<pubDate>Wed, 04 Feb 2009 12:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://thedeadone.net/forum/?p=1613#comment-3573</guid>
		<description>apparently the post above does not display the code correctly

the solution I provided can be found on the WP forum pages at

&lt;a href=&quot;http://wordpress.org/support/topic/239374&quot; rel=&quot;nofollow&quot;&gt;uncategorized code solution&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>apparently the post above does not display the code correctly</p>
<p>the solution I provided can be found on the WP forum pages at</p>
<p><a href="http://wordpress.org/support/topic/239374" rel="nofollow">uncategorized code solution</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ron</title>
		<link>http://thedeadone.net/forum/?p=1613#comment-3572</link>
		<dc:creator>ron</dc:creator>
		<pubDate>Wed, 04 Feb 2009 12:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://thedeadone.net/forum/?p=1613#comment-3572</guid>
		<description>while it would be nice if tdo forms could eliminate the &lt;em&gt;uncategorized&lt;/em&gt; category from being added to each submitted post I found another way around this.

to eliminate the display of &lt;em&gt;uncategorized&lt;/em&gt; on posts, etc. I found the folowing solution in the WP forums.

In the page.php, index.php, single.php etc. files of your theme change the following:

&lt;code&gt;&lt;/code&gt;

to:
&lt;code&gt;
cat_name != &#039;Uncategorized&#039;) 
{echo &#039;term_id ) . &#039;&quot; title=&quot;&#039; 
. sprintf( __( &quot;View all posts in %s&quot; ), $category-&gt;name ) . &#039;&quot; &#039; . &#039;&gt;&#039; . $category-&gt;name.&#039;&lt;/a&gt; &#039;; } } ?&gt;
&lt;/code&gt;

&lt;strong&gt;note:&lt;/strong&gt; the &lt;em&gt;href&lt;/em&gt; in the above code should be &lt;em&gt;&lt;strong&gt;a href&lt;/strong&gt;&lt;/em&gt;, I could not get it to display correctly in the preview of this post. So please make sure you modify the code accordingly if you plan to use it.

this will eliminate the display of &lt;em&gt;uncategorized&lt;/em&gt;(although the actual posts will still have the uncategorized category attached).

But it addresses the need to have the users not see &lt;em&gt;uncategorized&lt;/em&gt; on every post.</description>
		<content:encoded><![CDATA[<p>while it would be nice if tdo forms could eliminate the <em>uncategorized</em> category from being added to each submitted post I found another way around this.</p>
<p>to eliminate the display of <em>uncategorized</em> on posts, etc. I found the folowing solution in the WP forums.</p>
<p>In the page.php, index.php, single.php etc. files of your theme change the following:</p>
<p><code></code></p>
<p>to:<br />
<code><br />
cat_name != 'Uncategorized')<br />
{echo 'term_id ) . '" title="'<br />
. sprintf( __( "View all posts in %s" ), $category-&gt;name ) . '" ' . '&gt;' . $category-&gt;name.' '; } } ?&gt;<br />
</code></p>
<p><strong>note:</strong> the <em>href</em> in the above code should be <em><strong>a href</strong></em>, I could not get it to display correctly in the preview of this post. So please make sure you modify the code accordingly if you plan to use it.</p>
<p>this will eliminate the display of <em>uncategorized</em>(although the actual posts will still have the uncategorized category attached).</p>
<p>But it addresses the need to have the users not see <em>uncategorized</em> on every post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://thedeadone.net/forum/?p=1613#comment-3567</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 04 Feb 2009 05:40:55 +0000</pubDate>
		<guid isPermaLink="false">http://thedeadone.net/forum/?p=1613#comment-3567</guid>
		<description>Same here - I can&#039;t see anywhere to disable it though - anyone else?</description>
		<content:encoded><![CDATA[<p>Same here &#8211; I can&#8217;t see anywhere to disable it though &#8211; anyone else?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
