<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
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/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>SDAC Inc &#124; Chicagoland Web Development &#187; Clients</title> <atom:link href="http://www.sandboxdev.com/category/blog/clients/feed/" rel="self" type="application/rss+xml" /><link>http://www.sandboxdev.com</link> <description>Just another Sandbox Development and Consulting Inc. Sites site</description> <lastBuildDate>Wed, 25 Jan 2012 07:57:33 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Lucidity Catalog Theme for Topspin Artists</title><link>http://www.sandboxdev.com/2009/09/09/lucidity-catalog-theme-for-topspin-artists/</link> <comments>http://www.sandboxdev.com/2009/09/09/lucidity-catalog-theme-for-topspin-artists/#comments</comments> <pubDate>Wed, 09 Sep 2009 14:40:07 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[Clients]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Commercial Themes]]></category> <category><![CDATA[Lucidity Catalog]]></category> <category><![CDATA[Topspin]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=767</guid> <description><![CDATA[I have been working with Topspin for a few years now and recently worked with them to create our theme &#8220;Lucidity Catalog&#8221; &#8211; with their artists in mind. Check out the recent Lucidity Catalog blog post I put together for them on their developers&#8217; blog.]]></description> <content:encoded><![CDATA[<p>I have been working with <a
href="http://www.topspinmedia.com" target="_blank">Topspin</a> for a few years now and recently worked with them to create our theme &#8220;Lucidity Catalog&#8221; &#8211; with their artists in mind.  Check out the recent <a
href="http://dev.topspinmedia.com/blog/2009/09/create-an-easy-to-manage-online-catalog-with-the-wordpress-lucidity-catalog-theme-topspin/" target="_blank">Lucidity Catalog blog post I put together for them</a> on their developers&#8217; blog.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2009/09/09/lucidity-catalog-theme-for-topspin-artists/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Get Top Parent Category (WordPress)</title><link>http://www.sandboxdev.com/2009/01/15/get-top-parent-category-wordpress/</link> <comments>http://www.sandboxdev.com/2009/01/15/get-top-parent-category-wordpress/#comments</comments> <pubDate>Thu, 15 Jan 2009 15:28:16 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[Clients]]></category> <category><![CDATA[HOWTOs]]></category> <category><![CDATA[SDAC Blog]]></category> <category><![CDATA[WordPress Logic]]></category> <category><![CDATA[get_cateogry_parents]]></category> <category><![CDATA[jappler.com]]></category> <category><![CDATA[WordPress]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=518</guid> <description><![CDATA[There are many times when you need to show or get the top most (root) parent category in WordPress &#8211; regardless of how many subcategories you might be deep. I have used this logic for page navigation (highlight the top parent tab) &#8211; as well as within some custom loops/sidebar code. They way to do [...]]]></description> <content:encoded><![CDATA[<p>There are many times when you need to show or get the top most (root) parent category in WordPress &#8211; regardless of how many subcategories you might be deep.  I have used this logic for page navigation (highlight the top parent tab) &#8211; as well as within some custom loops/sidebar code.</p><p>They way to do this:</p><pre class="brush: php; title: Custom Code; notranslate">
// get parent category slug
$parentCatList = get_category_parents($cat,false,',');
$parentCatListArray = split(&quot;,&quot;,$parentCatList);
$topParentName = $parentCatListArray[0];
$sdacReplace = array(&quot; &quot; =&gt; &quot;-&quot;, &quot;(&quot; =&gt; &quot;&quot;, &quot;)&quot; =&gt; &quot;&quot;);
$topParent = strtolower(strtr($topParentName,$sdacReplace));
</pre><p>To test this you can simply put it in your header and echo out $topParent and you will see the &#8220;slug&#8221; of the category.<br
/> If you want to see the category name and not necessarily the slug &#8211; you can simply echo $topParentName.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2009/01/15/get-top-parent-category-wordpress/feed/</wfw:commentRss> <slash:comments>44</slash:comments> </item> <item><title>HTML to PDF</title><link>http://www.sandboxdev.com/2008/09/03/html-to-pdf/</link> <comments>http://www.sandboxdev.com/2008/09/03/html-to-pdf/#comments</comments> <pubDate>Wed, 03 Sep 2008 15:31:58 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[Clients]]></category> <category><![CDATA[SDAC Blog]]></category> <category><![CDATA[PDF]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=231</guid> <description><![CDATA[We recently finished a project where we had to create a PDF on the fly of the user&#8217;s filled out application (~12 pages of data) so they could keep a copy. To do this &#8211; I looked at a few libraries out there and then ended up using HTML_toPDF. I had used another script from [...]]]></description> <content:encoded><![CDATA[<p>We recently finished a project where we had to create a PDF on the fly of the user&#8217;s filled out application (~12 pages of data) so they could keep a copy.  To do this &#8211; I looked at a few libraries out there and then ended up using <a
href="http://www.rustyparts.com/pdf.php">HTML_toPDF</a>.  I had used another script from the same guy who put together HTML_toPDF and thus prompted me to use this one as well.  The script works great and our client is very happy.  If you ever need this capability &#8211; check out <a
href="http://www.rustyparts.com/pdf.php">HTML_toPDF</a>!</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2008/09/03/html-to-pdf/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Web Site Portfolio Available</title><link>http://www.sandboxdev.com/2006/10/14/web-site-portfolio-available/</link> <comments>http://www.sandboxdev.com/2006/10/14/web-site-portfolio-available/#comments</comments> <pubDate>Sat, 14 Oct 2006 17:05:21 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[Clients]]></category> <category><![CDATA[News]]></category> <category><![CDATA[SDAC-Inc]]></category> <category><![CDATA[Web-Development]]></category> <guid
isPermaLink="false">http://www.sdacinc.com/news/2006/10/14/web-site-portfolio-available.php</guid> <description><![CDATA[We have recently updated our portfolio and made it available. All of our recent web development work is now available for visitors and potential customers to look at.]]></description> <content:encoded><![CDATA[<p>We have <a
href="http://www.sdacinc.com/web_solutions/portfolio">recently updated our portfolio</a> and made it available.  All of our recent web development work is now available for visitors and potential customers to look at.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2006/10/14/web-site-portfolio-available/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
