<?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: Category Ajax Chain Select : Wordpress Plugin</title>
	<atom:link href="http://www.peterjharrison.me/2009/08/category-ajax-chain-select-wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.peterjharrison.me/2009/08/category-ajax-chain-select-wordpress-plugin/</link>
	<description>PHP Web Developer &#38; Designer : Cardiff &#38; Shrewsbury</description>
	<lastBuildDate>Mon, 22 Feb 2010 13:48:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Maker</title>
		<link>http://www.peterjharrison.me/2009/08/category-ajax-chain-select-wordpress-plugin/comment-page-1/#comment-464</link>
		<dc:creator>Maker</dc:creator>
		<pubDate>Sat, 16 Jan 2010 22:04:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.peterjharrison.me/?p=164#comment-464</guid>
		<description>Hi Peter J Harrison,

Thanks. It&#039;s working perfectly.</description>
		<content:encoded><![CDATA[<p>Hi Peter J Harrison,</p>
<p>Thanks. It&#8217;s working perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter J Harriso</title>
		<link>http://www.peterjharrison.me/2009/08/category-ajax-chain-select-wordpress-plugin/comment-page-1/#comment-463</link>
		<dc:creator>Peter J Harriso</dc:creator>
		<pubDate>Sat, 16 Jan 2010 20:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.peterjharrison.me/?p=164#comment-463</guid>
		<description>Hi Maker,

If you want to add labels to the drop downs please replace line 112 in the chainselects.php file:

$chainselect .= &quot;&lt; li &gt;&lt; select id=&#039;dhtmlgoodies_&quot;.$x.&quot;&#039; name=&#039;dhtmlgoodies_&quot;.$x.&quot;&#039; onchange=&#039;get&quot;.($x+1).&quot;List(this)&#039; &gt;&quot;;

With the following:


if ($x == 1) { $selectname = &quot;[NAME HERE]&quot;; }
if ($x == 2) { $selectname = &quot;[NAME HERE]&quot;; }
if ($x == 3) { $selectname = &quot;[NAME HERE]&quot;; }
$chainselect .= &quot;&lt; li &gt;&lt; label &gt;&quot;.$selectname.&quot;&lt;/ label &gt;&lt; select id=&#039;dhtmlgoodies_&quot;.$x.&quot;&#039; name=&#039;dhtmlgoodies_&quot;.$x.&quot;&#039; onchange=&#039;get&quot;.($x+1).&quot;List(this)&#039;&gt;&quot;;


Replacing [NAME HERE] with your the name of the label.
Also you will need one of these lines for each level of category you have.


if ($x == 1) { $selectname = &quot;[NAME HERE]&quot;; }


Make sure you remove the spaces in the li and select tags, I had to add them for them to display in the comment.

If you have and trouble please do let me know.

Regards
Pete</description>
		<content:encoded><![CDATA[<p>Hi Maker,</p>
<p>If you want to add labels to the drop downs please replace line 112 in the chainselects.php file:</p>
<p>$chainselect .= &#8220;< li >< select id='dhtmlgoodies_".$x."' name='dhtmlgoodies_".$x."' onchange='get".($x+1)."List(this)' >&#8220;;</p>
<p>With the following:</p>
<p>if ($x == 1) { $selectname = &#8220;[NAME HERE]&#8220;; }<br />
if ($x == 2) { $selectname = &#8220;[NAME HERE]&#8220;; }<br />
if ($x == 3) { $selectname = &#8220;[NAME HERE]&#8220;; }<br />
$chainselect .= &#8220;< li >< label >&#8220;.$selectname.&#8221;< select id='dhtmlgoodies_".$x."' name='dhtmlgoodies_".$x."' onchange='get".($x+1)."List(this)'>&#8220;;</p>
<p>Replacing [NAME HERE] with your the name of the label.<br />
Also you will need one of these lines for each level of category you have.</p>
<p>if ($x == 1) { $selectname = &#8220;[NAME HERE]&#8220;; }</p>
<p>Make sure you remove the spaces in the li and select tags, I had to add them for them to display in the comment.</p>
<p>If you have and trouble please do let me know.</p>
<p>Regards<br />
Pete</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maker</title>
		<link>http://www.peterjharrison.me/2009/08/category-ajax-chain-select-wordpress-plugin/comment-page-1/#comment-462</link>
		<dc:creator>Maker</dc:creator>
		<pubDate>Sat, 16 Jan 2010 20:23:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.peterjharrison.me/?p=164#comment-462</guid>
		<description>Sorry for double reply.
I looked into your code around 74 line:
		for ($x = 1; $x &lt; $cat_cnt+1; $x++) {		
			$chainselect .= &quot;
So I need to add something like:
if $cat_cnt=1 (&quot;name of dropdown1&quot;)
if $cat_cnt=2 (&quot;name of dropdown2&quot;)
Can you help?

Btw, i solved second question.</description>
		<content:encoded><![CDATA[<p>Sorry for double reply.<br />
I looked into your code around 74 line:<br />
		for ($x = 1; $x &lt; $cat_cnt+1; $x++) {<br />
			$chainselect .= &quot;<br />
So I need to add something like:<br />
if $cat_cnt=1 (&#8220;name of dropdown1&#8243;)<br />
if $cat_cnt=2 (&#8220;name of dropdown2&#8243;)<br />
Can you help?</p>
<p>Btw, i solved second question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maker</title>
		<link>http://www.peterjharrison.me/2009/08/category-ajax-chain-select-wordpress-plugin/comment-page-1/#comment-461</link>
		<dc:creator>Maker</dc:creator>
		<pubDate>Sat, 16 Jan 2010 19:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.peterjharrison.me/?p=164#comment-461</guid>
		<description>Hi, very nice plugin. 

1. Can I setup name of dropdowns? (like name: dropdown1, name:dropdown2)
2. Is it possible to show drop-downs inline?

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi, very nice plugin. </p>
<p>1. Can I setup name of dropdowns? (like name: dropdown1, name:dropdown2)<br />
2. Is it possible to show drop-downs inline?</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.peterjharrison.me/2009/08/category-ajax-chain-select-wordpress-plugin/comment-page-1/#comment-440</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Fri, 08 Jan 2010 22:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.peterjharrison.me/?p=164#comment-440</guid>
		<description>ty great plugin

pls update m8</description>
		<content:encoded><![CDATA[<p>ty great plugin</p>
<p>pls update m8</p>
]]></content:encoded>
	</item>
</channel>
</rss>
