<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">
<channel>
	<title>Comments for Jeremy Clark - TechNet.com</title>
	
	<link>http://clark-technet.com</link>
	<description />
	<lastBuildDate>Tue, 27 Jul 2010 01:18:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CommentsForJeremyClark-ATechBlog-" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="commentsforjeremyclark-atechblog-" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Comment on Linux Guides by Korina</title>
		<link>http://clark-technet.com/linux-guides/comment-page-1#comment-11669</link>
		<dc:creator>Korina</dc:creator>
		<pubDate>Tue, 27 Jul 2010 01:18:25 +0000</pubDate>
		<guid isPermaLink="false">http://clarktech.no-ip.com/?page_id=262#comment-11669</guid>
		<description>As they say that Linux OS is quite good, but I still prefer the Windows. Though I am not fan of Bill Gates, I find it easy for e to use the Windows, either for server or  for the workstations. I have open source software, they get updated almost every second and that is not really what I want because adjustments needs to be done after the updates. Cant just sit there and keep on updating it every moment.</description>
		<content:encoded><![CDATA[<p>As they say that Linux OS is quite good, but I still prefer the Windows. Though I am not fan of Bill Gates, I find it easy for e to use the Windows, either for server or  for the workstations. I have open source software, they get updated almost every second and that is not really what I want because adjustments needs to be done after the updates. Cant just sit there and keep on updating it every moment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Stylesheets using PHP by Andrew Dolores</title>
		<link>http://clark-technet.com/2009/09/dynamic-stylesheets-using-php/comment-page-1#comment-11646</link>
		<dc:creator>Andrew Dolores</dc:creator>
		<pubDate>Mon, 26 Jul 2010 11:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=437#comment-11646</guid>
		<description>These ideas help me so much in wordpress designing. Thanks for the tips! I really appreciate it.</description>
		<content:encoded><![CDATA[<p>These ideas help me so much in wordpress designing. Thanks for the tips! I really appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTC Incredible – Name That Fits by droid incredible</title>
		<link>http://clark-technet.com/2010/05/htc-incredible-name-that-fits/comment-page-1#comment-11566</link>
		<dc:creator>droid incredible</dc:creator>
		<pubDate>Sun, 25 Jul 2010 02:20:30 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=476#comment-11566</guid>
		<description>Howdy all just found the location and thought I would say hello.  I like a variety of you might be waiting for my Incredible to be shipped.  I ordered it on-line on 6/9 and so they maintain telling me it can ship this Wednesday 6/30.  Fingers crossed that it does this waiting is killing me!  I'm soo glad this site is very informative to me.  Thank you</description>
		<content:encoded><![CDATA[<p>Howdy all just found the location and thought I would say hello.  I like a variety of you might be waiting for my Incredible to be shipped.  I ordered it on-line on 6/9 and so they maintain telling me it can ship this Wednesday 6/30.  Fingers crossed that it does this waiting is killing me!  I&#8217;m soo glad this site is very informative to me.  Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Options Framework Ver 2 by Hernan Silva</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-options-framework-ver-2/comment-page-2#comment-11424</link>
		<dc:creator>Hernan Silva</dc:creator>
		<pubDate>Thu, 22 Jul 2010 09:42:58 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=444#comment-11424</guid>
		<description>Ed,

you can workaround this and make your code cleaner inserting the following code inside your functions.php file:
&lt;code&gt;
if ( get_magic_quotes_gpc() ) {
    $_POST      = array_map( 'stripslashes_deep', $_POST );
    $_GET       = array_map( 'stripslashes_deep', $_GET );
    $_COOKIE    = array_map( 'stripslashes_deep', $_COOKIE );
    $_REQUEST   = array_map( 'stripslashes_deep', $_REQUEST );
}
&lt;/code&gt;

This is a good practice stated in a wordpress codex page: http://codex.wordpress.org/Function_Reference/stripslashes_deep

Hope it works for you, it worked for me :)</description>
		<content:encoded><![CDATA[<p>Ed,</p>
<p>you can workaround this and make your code cleaner inserting the following code inside your functions.php file:<br />
<code><br />
if ( get_magic_quotes_gpc() ) {<br />
    $_POST      = array_map( 'stripslashes_deep', $_POST );<br />
    $_GET       = array_map( 'stripslashes_deep', $_GET );<br />
    $_COOKIE    = array_map( 'stripslashes_deep', $_COOKIE );<br />
    $_REQUEST   = array_map( 'stripslashes_deep', $_REQUEST );<br />
}<br />
</code></p>
<p>This is a good practice stated in a wordpress codex page: <a href="http://codex.wordpress.org/Function_Reference/stripslashes_deep" rel="nofollow">http://codex.wordpress.org/Function_Reference/stripslashes_deep</a></p>
<p>Hope it works for you, it worked for me <img src='http://clark-technet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Developers Tip – Call Dynamic CSS the Right Way by WordPress Dynamic CSS | Equal Web Creative</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-developers-tip-call-dynamic-css-the-right-way/comment-page-1#comment-11244</link>
		<dc:creator>WordPress Dynamic CSS | Equal Web Creative</dc:creator>
		<pubDate>Sat, 17 Jul 2010 19:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=446#comment-11244</guid>
		<description>[...] Some code from clark-technet.com [...]</description>
		<content:encoded><![CDATA[<p>[...] Some code from clark-technet.com [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Developers Tip – Adding Theme Menu by Jeremy Clark</title>
		<link>http://clark-technet.com/2010/03/wordpress-theme-developers-tip-adding-theme-menu/comment-page-1#comment-10806</link>
		<dc:creator>Jeremy Clark</dc:creator>
		<pubDate>Wed, 07 Jul 2010 19:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=463#comment-10806</guid>
		<description>I'm not sure what you mean. Techozoic doesn't require a plugin to work. If you'd like to post a question in the support forums I'll be glad to see if I van help you fix the problem. </description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure what you mean. Techozoic doesn&#8217;t require a plugin to work. If you&#8217;d like to post a question in the support forums I&#8217;ll be glad to see if I van help you fix the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Developers Tip – Adding Theme Menu by Garry Powell</title>
		<link>http://clark-technet.com/2010/03/wordpress-theme-developers-tip-adding-theme-menu/comment-page-1#comment-10742</link>
		<dc:creator>Garry Powell</dc:creator>
		<pubDate>Mon, 05 Jul 2010 15:33:08 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=463#comment-10742</guid>
		<description>I need plug-in for earlier version of techozoic theme.  Did an upgrade last week and it is absolutely not working in my site!</description>
		<content:encoded><![CDATA[<p>I need plug-in for earlier version of techozoic theme.  Did an upgrade last week and it is absolutely not working in my site!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Developers Tip – Call Dynamic CSS the Right Way by Jeremy Clark</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-developers-tip-call-dynamic-css-the-right-way/comment-page-1#comment-10593</link>
		<dc:creator>Jeremy Clark</dc:creator>
		<pubDate>Thu, 01 Jul 2010 15:10:07 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=446#comment-10593</guid>
		<description>Hi Mark 
Do you have a link to download the theme so I could take a look at the code for you and let you know. I haven't seen this issue before.</description>
		<content:encoded><![CDATA[<p>Hi Mark<br />
Do you have a link to download the theme so I could take a look at the code for you and let you know. I haven&#8217;t seen this issue before.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Developers Tip – Call Dynamic CSS the Right Way by Mark</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-developers-tip-call-dynamic-css-the-right-way/comment-page-1#comment-10559</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 30 Jun 2010 22:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=446#comment-10559</guid>
		<description>I am using this exact code to do the same thing.  However when I look at what files the page is loading I see that it is loading the style.php file twice?  Any ideas why?  It is only called in the header once.

Thanks,</description>
		<content:encoded><![CDATA[<p>I am using this exact code to do the same thing.  However when I look at what files the page is loading I see that it is loading the style.php file twice?  Any ideas why?  It is only called in the header once.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Options Framework Ver 2 by Introducing the new UA WordPress Theme « WebTide</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-options-framework-ver-2/comment-page-3#comment-10551</link>
		<dc:creator>Introducing the new UA WordPress Theme « WebTide</dc:creator>
		<pubDate>Wed, 30 Jun 2010 13:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=444#comment-10551</guid>
		<description>[...] noticeable differences with this theme is the addition of a UA Theme Options panel. Thanks to an open source framework for creating theme options WordPress users with admin rights will be able to control major design aspects of their theme [...]</description>
		<content:encoded><![CDATA[<p>[...] noticeable differences with this theme is the addition of a UA Theme Options panel. Thanks to an open source framework for creating theme options WordPress users with admin rights will be able to control major design aspects of their theme [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Options Framework Ver 2 by Wok Doan</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-options-framework-ver-2/comment-page-3#comment-10535</link>
		<dc:creator>Wok Doan</dc:creator>
		<pubDate>Wed, 30 Jun 2010 04:33:47 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=444#comment-10535</guid>
		<description>Is there in way to 
to have a the dynamically generated style sheet have a name appended.
With the current provided sample code

http://www.fakedomain.com/?css=css, would work

but
http://www.fakedomain.com/directoryname/filename.css?css=css 
would provide a 404 error in the response headers, even though you can pull up the page in a web browsers

Any thoughts?</description>
		<content:encoded><![CDATA[<p>Is there in way to<br />
to have a the dynamically generated style sheet have a name appended.<br />
With the current provided sample code</p>
<p><a href="http://www.fakedomain.com/?css=css" >http://www.fakedomain.com/?css=css</a>, would work</p>
<p>but<br />
<a href="http://www.fakedomain.com/directoryname/filename.css?css=css" >http://www.fakedomain.com/directoryname/filename.css?css=css</a><br />
would provide a 404 error in the response headers, even though you can pull up the page in a web browsers</p>
<p>Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Stylesheets using PHP by Jeremy Clark</title>
		<link>http://clark-technet.com/2009/09/dynamic-stylesheets-using-php/comment-page-1#comment-9323</link>
		<dc:creator>Jeremy Clark</dc:creator>
		<pubDate>Sun, 06 Jun 2010 14:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=437#comment-9323</guid>
		<description>Sorry for the delay in answering for some reason your comment was flagged as spam.  Some of your code wasn't handled correctly so I can't see how you were calling the options.  I have an updated theme framework with examples and files you can download to see how they work &lt;a href="http://clark-technet.com/2010/01/wordpress-theme-options-framework-ver-2"&gt;here&lt;/a&gt;.  As far as the two separate arrays for different options.  It's easier just to append a number to the end of the second option id and call it they way instead of trying to deal with two arrays.  I hope the new version of the framework will help if not please let me know and I'll try to help any way I can.</description>
		<content:encoded><![CDATA[<p>Sorry for the delay in answering for some reason your comment was flagged as spam.  Some of your code wasn&#8217;t handled correctly so I can&#8217;t see how you were calling the options.  I have an updated theme framework with examples and files you can download to see how they work <a href="http://clark-technet.com/2010/01/wordpress-theme-options-framework-ver-2">here</a>.  As far as the two separate arrays for different options.  It&#8217;s easier just to append a number to the end of the second option id and call it they way instead of trying to deal with two arrays.  I hope the new version of the framework will help if not please let me know and I&#8217;ll try to help any way I can.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTC Incredible – Name That Fits by Gadget Guy</title>
		<link>http://clark-technet.com/2010/05/htc-incredible-name-that-fits/comment-page-1#comment-9322</link>
		<dc:creator>Gadget Guy</dc:creator>
		<pubDate>Sun, 06 Jun 2010 12:55:01 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=476#comment-9322</guid>
		<description>Congrats for the new aquisition. I own the HTC Droid myself and I think it's worth every penny</description>
		<content:encoded><![CDATA[<p>Congrats for the new aquisition. I own the HTC Droid myself and I think it&#8217;s worth every penny</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Stylesheets using PHP by Amy</title>
		<link>http://clark-technet.com/2009/09/dynamic-stylesheets-using-php/comment-page-1#comment-9227</link>
		<dc:creator>Amy</dc:creator>
		<pubDate>Fri, 04 Jun 2010 04:31:08 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=437#comment-9227</guid>
		<description>2 brief questions: 

I'm setting this up for image width. My array in controlpanel.php looks like this:
-----------------------------------------------------------------------------
    array(  "name" =&gt; "Image width",
	"desc" =&gt; "Enter the image's width.",
            "id" =&gt; $shortname."m_width",
            "std" =&gt; "137",
            "type" =&gt; "text"
	),
-----------------------------------------------------------------------------
style.php looks like this:
-----------------------------------------------------------------------------


.first_li span {
	background: transparent url('path/image.png') no-repeat;
	width: px;
	height: 62px;
	top: -87px;
	left: -40px;
	}
-----------------------------------------------------------------------------
The css works fine, but the php variable for 'm_width' isn't being recognized.
What am I missing here?

*************************************************************
*************************************************************

Also, how do you handle a second set of options? ie: 2 seperate arrays?
-----------------------------------------------------------------------------
$options = array (

/* Image #1. Option: Image Width. */
/* This is the option for TEXT BOX. */
    array(  "name" =&gt; "Image width",
	"desc" =&gt; "Enter the image's width.",
            "id" =&gt; $shortname."m_width",
            "std" =&gt; "137",
            "type" =&gt; "text"
	),

/* Image #1. Option: Image Height. */
/* This is the option for TEXT BOX. */
    array(  "name" =&gt; "Image height",
	"desc" =&gt; "Enter the image's height.",
            "id" =&gt; $shortname."m_height",
            "std" =&gt; "62",
            "type" =&gt; "text"
	)
);

$options2 = array (

/* Image #2. Option: Image Width. */
/* This is the option for TEXT BOX. */
    array(  "name" =&gt; "Image width",
			"desc" =&gt; "Enter the image's width.",
            "id" =&gt; $shortname."m_width",
            "std" =&gt; "132",
            "type" =&gt; "text"
	),

/* Image #2. Option: Image Height. */
/* This is the option for TEXT BOX. */
    array(  "name" =&gt; "Image height",
			"desc" =&gt; "Enter the image's height.",
            "id" =&gt; $shortname."m_height",
            "std" =&gt; "82",
            "type" =&gt; "text"
	)
);



		Image #1
		

		&lt;!--Tells how to display an option depending on the value, ig: "text" or "select" or "multiselect"--&gt;
		
			
				 
					:
					
				
				 
					
						
					
						
					
				


				
			
		
	&lt;!--End div for  Image #1--&gt;

	

	&lt;!--Begin div for Image#2--&gt;
	
		Image #2
		

		&lt;!--Tells how to display an option depending on the value, ig: "text" or "select" or "multiselect"--&gt;
		
			
			   
					:
				
				
				 
					
				
					
					
				
			

				
			
		
	&lt;!--End div for Image #2--&gt;
-----------------------------------------------------------------------------</description>
		<content:encoded><![CDATA[<p>2 brief questions: </p>
<p>I&#8217;m setting this up for image width. My array in controlpanel.php looks like this:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
    array(  &#8220;name&#8221; =&gt; &#8220;Image width&#8221;,<br />
	&#8220;desc&#8221; =&gt; &#8220;Enter the image&#8217;s width.&#8221;,<br />
            &#8220;id&#8221; =&gt; $shortname.&#8221;m_width&#8221;,<br />
            &#8220;std&#8221; =&gt; &#8220;137&#8243;,<br />
            &#8220;type&#8221; =&gt; &#8220;text&#8221;<br />
	),<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
style.php looks like this:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>.first_li span {<br />
	background: transparent url(&#8216;path/image.png&#8217;) no-repeat;<br />
	width: px;<br />
	height: 62px;<br />
	top: -87px;<br />
	left: -40px;<br />
	}<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
The css works fine, but the php variable for &#8216;m_width&#8217; isn&#8217;t being recognized.<br />
What am I missing here?</p>
<p>*************************************************************<br />
*************************************************************</p>
<p>Also, how do you handle a second set of options? ie: 2 seperate arrays?<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
$options = array (</p>
<p>/* Image #1. Option: Image Width. */<br />
/* This is the option for TEXT BOX. */<br />
    array(  &#8220;name&#8221; =&gt; &#8220;Image width&#8221;,<br />
	&#8220;desc&#8221; =&gt; &#8220;Enter the image&#8217;s width.&#8221;,<br />
            &#8220;id&#8221; =&gt; $shortname.&#8221;m_width&#8221;,<br />
            &#8220;std&#8221; =&gt; &#8220;137&#8243;,<br />
            &#8220;type&#8221; =&gt; &#8220;text&#8221;<br />
	),</p>
<p>/* Image #1. Option: Image Height. */<br />
/* This is the option for TEXT BOX. */<br />
    array(  &#8220;name&#8221; =&gt; &#8220;Image height&#8221;,<br />
	&#8220;desc&#8221; =&gt; &#8220;Enter the image&#8217;s height.&#8221;,<br />
            &#8220;id&#8221; =&gt; $shortname.&#8221;m_height&#8221;,<br />
            &#8220;std&#8221; =&gt; &#8220;62&#8243;,<br />
            &#8220;type&#8221; =&gt; &#8220;text&#8221;<br />
	)<br />
);</p>
<p>$options2 = array (</p>
<p>/* Image #2. Option: Image Width. */<br />
/* This is the option for TEXT BOX. */<br />
    array(  &#8220;name&#8221; =&gt; &#8220;Image width&#8221;,<br />
			&#8220;desc&#8221; =&gt; &#8220;Enter the image&#8217;s width.&#8221;,<br />
            &#8220;id&#8221; =&gt; $shortname.&#8221;m_width&#8221;,<br />
            &#8220;std&#8221; =&gt; &#8220;132&#8243;,<br />
            &#8220;type&#8221; =&gt; &#8220;text&#8221;<br />
	),</p>
<p>/* Image #2. Option: Image Height. */<br />
/* This is the option for TEXT BOX. */<br />
    array(  &#8220;name&#8221; =&gt; &#8220;Image height&#8221;,<br />
			&#8220;desc&#8221; =&gt; &#8220;Enter the image&#8217;s height.&#8221;,<br />
            &#8220;id&#8221; =&gt; $shortname.&#8221;m_height&#8221;,<br />
            &#8220;std&#8221; =&gt; &#8220;82&#8243;,<br />
            &#8220;type&#8221; =&gt; &#8220;text&#8221;<br />
	)<br />
);</p>
<p>		Image #1</p>
<p>		<!--Tells how to display an option depending on the value, ig: "text" or "select" or "multiselect"--></p>
<p>					:</p>
<p>	<!--End div for  Image #1--></p>
<p>	<!--Begin div for Image#2--></p>
<p>		Image #2</p>
<p>		<!--Tells how to display an option depending on the value, ig: "text" or "select" or "multiselect"--></p>
<p>					:</p>
<p>	<!--End div for Image #2--><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Options Framework Ver 2 by EsteWeb</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-options-framework-ver-2/comment-page-3#comment-8976</link>
		<dc:creator>EsteWeb</dc:creator>
		<pubDate>Wed, 26 May 2010 22:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=444#comment-8976</guid>
		<description>First off, thank you very much for this tutorial, it's really helped me a lot with my current project and I know it will be useful knowledge on future ones. Now on to my question: Say I wanted to be able to make it so that I can choose categories for certain pages (or even call upon pages for certain options), how would I go about doing that? I'm having a tough time trying to figure it out, it's driving me nuts...</description>
		<content:encoded><![CDATA[<p>First off, thank you very much for this tutorial, it&#8217;s really helped me a lot with my current project and I know it will be useful knowledge on future ones. Now on to my question: Say I wanted to be able to make it so that I can choose categories for certain pages (or even call upon pages for certain options), how would I go about doing that? I&#8217;m having a tough time trying to figure it out, it&#8217;s driving me nuts&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Techozoic Fluid now on Google Code by MJ Schrader</title>
		<link>http://clark-technet.com/2010/04/techozoic-fluid-now-on-google-code/comment-page-1#comment-8364</link>
		<dc:creator>MJ Schrader</dc:creator>
		<pubDate>Tue, 04 May 2010 20:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=466#comment-8364</guid>
		<description>The other free theme I am recommending is  "Swift by Satish Gandham a product of SwiftThemes.Com" I used it on http://365OnlineTips.com.  For this website I wanted a magazine setup with a top article and column format beneath because it is a daily tip website.</description>
		<content:encoded><![CDATA[<p>The other free theme I am recommending is  &#8220;Swift by Satish Gandham a product of SwiftThemes.Com&#8221; I used it on <a href="http://365OnlineTips.com" >http://365OnlineTips.com</a>.  For this website I wanted a magazine setup with a top article and column format beneath because it is a daily tip website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Techozoic Fluid now on Google Code by Jeremy Clark</title>
		<link>http://clark-technet.com/2010/04/techozoic-fluid-now-on-google-code/comment-page-1#comment-8362</link>
		<dc:creator>Jeremy Clark</dc:creator>
		<pubDate>Tue, 04 May 2010 17:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=466#comment-8362</guid>
		<description>Glad you found the problem.  I'm very honored that you'd mention it.  If you ever think of a feature that isn't included please don't hesitate to ask, always looking for new ideas.  Also if you wouldn't mind what is the other free theme that you recommend, helps with inspiration for new features.</description>
		<content:encoded><![CDATA[<p>Glad you found the problem.  I&#8217;m very honored that you&#8217;d mention it.  If you ever think of a feature that isn&#8217;t included please don&#8217;t hesitate to ask, always looking for new ideas.  Also if you wouldn&#8217;t mind what is the other free theme that you recommend, helps with inspiration for new features.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Techozoic Fluid now on Google Code by MJ Schrader</title>
		<link>http://clark-technet.com/2010/04/techozoic-fluid-now-on-google-code/comment-page-1#comment-8360</link>
		<dc:creator>MJ Schrader</dc:creator>
		<pubDate>Tue, 04 May 2010 17:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=466#comment-8360</guid>
		<description>Jeremy,

Actually I use the no sidebar for my sales page, and I know enough CSS to disable the menu.  I just haven't done so yet.  

But I write how-to guides and have several WordPress related guides for beginners coming out and really would like to recommend just a few themes that allow for a lot of flexibility.  Yours and one other in the free themes have met my standards.  Many of my readers are terrified of CSS.  

*blushing* Sorry I finally found what I needed. Disqus has a javascript check box in advanced settings that sometimes has to be checked.  Still new to disqus but it has increased my comments and virtually eliminated my spam.  http://Rockstarguidebooks.com 

But again the flexibility of your theme is AWESOME!  I so appreciate it and will be recommending it in my upcoming Wordpress books and ecourse.  (When I get more paying readers I will be sending some $$ your way.)</description>
		<content:encoded><![CDATA[<p>Jeremy,</p>
<p>Actually I use the no sidebar for my sales page, and I know enough CSS to disable the menu.  I just haven&#8217;t done so yet.  </p>
<p>But I write how-to guides and have several WordPress related guides for beginners coming out and really would like to recommend just a few themes that allow for a lot of flexibility.  Yours and one other in the free themes have met my standards.  Many of my readers are terrified of CSS.  </p>
<p>*blushing* Sorry I finally found what I needed. Disqus has a javascript check box in advanced settings that sometimes has to be checked.  Still new to disqus but it has increased my comments and virtually eliminated my spam.  <a href="http://Rockstarguidebooks.com" >http://Rockstarguidebooks.com</a> </p>
<p>But again the flexibility of your theme is AWESOME!  I so appreciate it and will be recommending it in my upcoming WordPress books and ecourse.  (When I get more paying readers I will be sending some $$ your way.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Options Framework Ver 2 by Jeremy Clark</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-options-framework-ver-2/comment-page-2#comment-8321</link>
		<dc:creator>Jeremy Clark</dc:creator>
		<pubDate>Mon, 03 May 2010 12:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=444#comment-8321</guid>
		<description>Glad you found it helpful, I've run into this problem myself.  It took me awhile to figure it out as well, but it was very simple once I found the problem.  Basically when multiple checkboxs or multiselect boxes are chosen and the data posted is an array the code then coverts it into a single string separated with commas with implode before saving options.  So all you need to to is &lt;a href="http://php.net/manual/en/function.explode.php"&gt;explode&lt;/a&gt; it before running the in_array test.  Something like this would work.

$theme_checkbox_array = explode(',', $settings['theme_checkbox']);
if (in_array(â€œItemâ€,$theme_checkbox_array')) { â€¦.do somethingâ€¦ };

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Glad you found it helpful, I&#8217;ve run into this problem myself.  It took me awhile to figure it out as well, but it was very simple once I found the problem.  Basically when multiple checkboxs or multiselect boxes are chosen and the data posted is an array the code then coverts it into a single string separated with commas with implode before saving options.  So all you need to to is <a href="http://php.net/manual/en/function.explode.php">explode</a> it before running the in_array test.  Something like this would work.</p>
<p>$theme_checkbox_array = explode(&#8216;,&#8217;, $settings['theme_checkbox']);<br />
if (in_array(â€œItemâ€,$theme_checkbox_array&#8217;)) { â€¦.do somethingâ€¦ };</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Theme Options Framework Ver 2 by Michelle</title>
		<link>http://clark-technet.com/2010/01/wordpress-theme-options-framework-ver-2/comment-page-2#comment-8313</link>
		<dc:creator>Michelle</dc:creator>
		<pubDate>Mon, 03 May 2010 03:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://clark-technet.com/?p=444#comment-8313</guid>
		<description>The comment ate my PHP code. It was this: 

Hi Jeremy, thanks so much for this tutorial, it's very helpful in my project. I will credit you when I finish it! I'm just having one problem. When I try to use this code (I took away the PHP tags, but imagine they're there)

if (in_array("Item",$settings['theme_checkbox'])) { ....do something... };

I get this error: Warning: in_array(): Wrong datatype for second argument

(Of course, I've replaced "Item" and the theme name/option name with my own names)

Any idea why this might happen?</description>
		<content:encoded><![CDATA[<p>The comment ate my PHP code. It was this: </p>
<p>Hi Jeremy, thanks so much for this tutorial, it&#8217;s very helpful in my project. I will credit you when I finish it! I&#8217;m just having one problem. When I try to use this code (I took away the PHP tags, but imagine they&#8217;re there)</p>
<p>if (in_array(&#8220;Item&#8221;,$settings['theme_checkbox'])) { &#8230;.do something&#8230; };</p>
<p>I get this error: Warning: in_array(): Wrong datatype for second argument</p>
<p>(Of course, I&#8217;ve replaced &#8220;Item&#8221; and the theme name/option name with my own names)</p>
<p>Any idea why this might happen?</p>
]]></content:encoded>
	</item>
</channel>
</rss><!-- Served from: clark-technet.com @ 2010-07-27 02:23:14 by W3 Total Cache -->
