<?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>Chad Coleman</title>
	<atom:link href="http://c.hadcoleman.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://c.hadcoleman.com</link>
	<description>WordPress, Content Management Systems and eCommerce Web Specialist</description>
	<lastBuildDate>Fri, 13 Aug 2010 18:00:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Timthumb and Shortcodes for Easy Wordpress Images</title>
		<link>http://c.hadcoleman.com/2010/08/timthumb-and-shortcodes-for-easy-wordpress-images/</link>
		<comments>http://c.hadcoleman.com/2010/08/timthumb-and-shortcodes-for-easy-wordpress-images/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 21:51:50 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[shortcodes]]></category>
		<category><![CDATA[timthumb]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com/?p=498</guid>
		<description><![CDATA[Here&#8217;s a quick and easy way to update image sizes on the fly directly in your Wordpress posts. Add this code into your functions.php file in your theme. Then make sure you insert timthumb.php in the root of your theme directory. Next create a fully writable directory named &#8216;cache&#8217; and place that in your theme [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick and easy way to update image sizes on the fly directly in your Wordpress posts. Add this code into your functions.php file in your theme. Then make sure you insert <a href="http://timthumb.googlecode.com/svn/trunk/timthumb.php">timthumb.php</a> in the root of your theme directory. Next create a fully writable directory named &#8216;cache&#8217; and place that in your theme root directory.</p>
<p>Now inside your posts just wrap an image URL with the img shortcode. Add height, width, alt, and class to it for more flexibility.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p498code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4982"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code" id="p498code2"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Image resize in content  </span>
<span style="color: #666666; font-style: italic;">// To Use: [img w=600 h=200 class=alignleft alt=My Photo]http://mysite.com/photo.jpg[/img]</span>
<span style="color: #000000; font-weight: bold;">function</span> timmyimg<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'w'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'600'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'h'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'250'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'class'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'alignnone'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'alt'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">&quot;&lt;img src='&quot;</span><span style="color: #339933;">.</span> get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;/timthumb.php?src=&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$content</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&amp;w=&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$w</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&amp;h=&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$h</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;' alt=&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$alt</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; class='wp-post-img &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$class</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;' /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'img'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'timmyimg'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<img src='http://c.hadcoleman.com/wp-content/themes/chadcoleman/thumb.php?src=http://c.hadcoleman.com/wp-content/uploads/2010/08/forrest_chadcoleman.jpg&w=500&h=200' alt=Forrest class='wp-post-img alignnone' /><br />
<br/><br />
<img src='http://c.hadcoleman.com/wp-content/themes/chadcoleman/thumb.php?src=http://c.hadcoleman.com/wp-content/uploads/2010/08/forrest_chadcoleman.jpg&w=100&h=100' alt=Forrest class='wp-post-img alignnone' />
<img src='http://c.hadcoleman.com/wp-content/themes/chadcoleman/thumb.php?src=http://c.hadcoleman.com/wp-content/uploads/2010/08/forrest_chadcoleman.jpg&w=382&h=100' alt=Forrest class='wp-post-img alignleft' />
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=498&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2010/08/timthumb-and-shortcodes-for-easy-wordpress-images/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wordpress Thumbnails Outside The Loop</title>
		<link>http://c.hadcoleman.com/2010/06/wordpress-thumbnails-outside-the-loop/</link>
		<comments>http://c.hadcoleman.com/2010/06/wordpress-thumbnails-outside-the-loop/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 19:44:50 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[the_post_image]]></category>
		<category><![CDATA[the_post_thumbnail]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com/?p=490</guid>
		<description><![CDATA[Occasionally you&#8217;ll need to fetch a posts image outside of the loop.

?View Code PHP1
2
3
4
5
6
&#60;?php  
    $thumb = get_post_meta&#40;$post-&#62;ID,'_thumbnail_id',false&#41;;
    $thumb = wp_get_attachment_image_src&#40;$thumb&#91;0&#93;, false&#41;;
    $thumb = $thumb&#91;0&#93;;?&#62;
&#160;
   &#60;img src=&#34;&#60;?php  echo $thumb; ?&#62;&#34; alt=&#34;&#34; /&#62;

Combine this with the Timthumb script for control over image size.
Not [...]]]></description>
			<content:encoded><![CDATA[<p>Occasionally you&#8217;ll need to fetch a posts image outside of the loop.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p490code6'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4906"><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code" id="p490code6"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>  
    <span style="color: #000088;">$thumb</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'_thumbnail_id'</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$thumb</span> <span style="color: #339933;">=</span> wp_get_attachment_image_src<span style="color: #009900;">&#40;</span><span style="color: #000088;">$thumb</span><span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$thumb</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$thumb</span><span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
   <span style="color: #339933;">&lt;</span>img src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php  echo <span style="color: #006699; font-weight: bold;">$thumb</span>; ?&gt;&quot;</span> alt<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&quot;</span> <span style="color: #339933;">/&gt;</span></pre></td></tr></table></div>

<p>Combine this with the <a href="http://c.hadcoleman.com/2008/06/adding-timthumb-to-your-wordpress-theme/">Timthumb script</a> for control over image size.</p>
<h3>Not Recommended, But Available Option</h3>
<p>This will output the URL to an image with the size predefined by &#8216;post-thumbnail&#8217; in your functions file when registering the functionality for post images.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p490code7'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4907"><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code" id="p490code7"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>  
    <span style="color: #000088;">$thumb</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'_thumbnail_id'</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$thumb</span> <span style="color: #339933;">=</span> wp_get_attachment_image_src<span style="color: #009900;">&#40;</span><span style="color: #000088;">$thumb</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'my-custom-size'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$thumb</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$thumb</span><span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$thumb</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>The above code is referencing &#8216;my-custom-size&#8217;, which we can see below as being 405&#215;180. Typically <a href="http://wpengineer.com/the-ultimative-guide-for-the_post_thumbnail-in-wordpress-2-9/#comment-3053">it is not advised</a> to use these predefined sizes as it will overload your uploads directory with additional sizes, and it puts strain on your server when uploading images. Better to use the above method with the <a href="http://c.hadcoleman.com/2008/06/adding-timthumb-to-your-wordpress-theme/">Timthumb script</a> to get an exact image size, while making use of image caching.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p490code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4908"><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code" id="p490code8"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'add_theme_support'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">// Added in 2.9</span>
	add_theme_support<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'post-thumbnails'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	set_post_thumbnail_size<span style="color: #009900;">&#40;</span> 50<span style="color: #339933;">,</span> 50<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Normal post thumbnails</span>
	add_image_size<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'my-custom-size'</span><span style="color: #339933;">,</span> 405<span style="color: #339933;">,</span> 180<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=490&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2010/06/wordpress-thumbnails-outside-the-loop/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Design Color Scheme From A Photograph</title>
		<link>http://c.hadcoleman.com/2010/02/design-color-scheme-from-a-photograph/</link>
		<comments>http://c.hadcoleman.com/2010/02/design-color-scheme-from-a-photograph/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:31:43 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[color scheme]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com/?p=435</guid>
		<description><![CDATA[As a designer I find inspiration for color schemes from all over. From architecture, nature, to paintings and photographs. I&#8217;ve driven by houses with a great color scheme and thought to myself &#8220;That would make a great color scheme for a website!&#8221;.
Using Photoshop&#8217;s Filter > Pixelate > Mosaic, we can grab a photograph and find [...]]]></description>
			<content:encoded><![CDATA[<p>As a designer I find inspiration for color schemes from all over. From architecture, nature, to paintings and photographs. I&#8217;ve driven by houses with a great color scheme and thought to myself &#8220;That would make a great color scheme for a website!&#8221;.</p>
<p>Using Photoshop&#8217;s <strong>Filter > Pixelate > Mosaic</strong>, we can grab a photograph and find a great scheme from it! Hover the below photos to see the scheme they produce at 65 cell size. Photographs with a wide array of colors will work best.</p>
<p><a href="javascript:;" id="colorscheme01"><img src="http://c.hadcoleman.com/wp-content/uploads/2010/02/colorscheme-01.jpg" /></a></p>
<p><a href="javascript:;" id="colorscheme02"><img src="http://c.hadcoleman.com/wp-content/uploads/2010/02/colorscheme-02.jpg" /></a></p>
<p><a href="javascript:;" id="colorscheme03"><img src="http://c.hadcoleman.com/wp-content/uploads/2010/02/colorscheme-03.jpg" /></a></p>
<style type="text/css">
<!--
a#colorscheme01 {height:320px;width: 500px;overflow: hidden;display: block;padding:0;margin:0;}
a#colorscheme01 img {margin-top: -328px;border:none;}
a#colorscheme01:hover img {margin-top: -3px;}
a#colorscheme01:hover {height:320px;}
a#colorscheme02 {height:320px;width: 500px;overflow: hidden;display: block;padding:0;margin:0;}
a#colorscheme02 img {margin-top: -328px;border:none;}
a#colorscheme02:hover img {margin-top: -3px;}
a#colorscheme02:hover {height:320px;}
a#colorscheme03 {height:320px;width: 500px;overflow: hidden;display: block;padding:0;margin:0;}
a#colorscheme03 img {margin-top: -328px;border:none;}
a#colorscheme03:hover img {margin-top: -3px;}
a#colorscheme03:hover {height:320px;}
-->
</style>
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=435&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2010/02/design-color-scheme-from-a-photograph/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Embed Facebook Fan Page Photo Albums In WordPress</title>
		<link>http://c.hadcoleman.com/2010/01/embed-facebook-fan-page-photo-albums-in-wordpress/</link>
		<comments>http://c.hadcoleman.com/2010/01/embed-facebook-fan-page-photo-albums-in-wordpress/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 04:26:45 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[albums]]></category>
		<category><![CDATA[fotobook]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com/?p=423</guid>
		<description><![CDATA[It is a great idea to have a Facebook fan page for your company, club or organization.
This is a minor hack of the Fotobook plugin (Version 3.1.8) for WordPress by Aaron Harp. Fotobook is originally meant to apply your personal photo albums into WordPress, but we&#8217;re going to make one small code tweak to instead [...]]]></description>
			<content:encoded><![CDATA[<p>It is a great idea to have a Facebook fan page for your company, club or organization.</p>
<p>This is a minor hack of the <a href="http://wordpress.org/extend/plugins/fotobook/download/">Fotobook plugin (Version 3.1.8)</a> for WordPress by <a href="http://www.aaronharp.com/dev/wp-fotobook/">Aaron Harp</a>. Fotobook is originally meant to apply your personal photo albums into WordPress, but we&#8217;re going to make one small code tweak to instead pull the albums from the fan page that we administer.</p>
<p>After installing the plugin, go ahead and activate it and grant the permissions to your Facebook account. </p>
<p>Next, visit your Facebook fan page, and click into an album so you&#8217;re viewing all photos in one particular album. In the address bar you&#8217;ll see a <em>&#038;id=123123123</em>. Copy that ID number. </p>
<p><img src="http://c.hadcoleman.com/wp-content/uploads/2010/01/fotobook-post.jpg" alt="" title="fotobook-post" width="499" height="196" class="alignnone size-full wp-image-424" /></p>
<p>In the plugin directory open the fotobook.php file and head down to line 243 and look for this code.</p>
<p><code>$uid = $session['uid'];</code></p>
<p>Swap that code for this</p>
<p><code>//$uid = $session['uid'];<br />
$uid = 123123123;</code></p>
<p>With the 123123123 being the ID code for your fan page.</p>
<p>If you have a custom URL set for your fan page you might notice that the album photos are not showing. To correct that move down around line 809 in fotobook.php and look for:</p>
<p><code>if(!is_numeric($id)) return false;</code></p>
<p>And code it out of use by adding // in front so that it now looks like</p>
<p><code>//if(!is_numeric($id)) return false;</code></p>
<p>Back in the plugin administration page, go ahead and import your albums. And you should be good to go!</p>
<p><small>With a thanks to B. Thibault in the forums at the <a href="http://www.facebook.com/topic.php?uid=2254862517&#038;topic=10155">Fotobook Application Page</a>.</small></p>
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=423&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2010/01/embed-facebook-fan-page-photo-albums-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>Motorcycle Website Design</title>
		<link>http://c.hadcoleman.com/2010/01/motorcycle-website-design/</link>
		<comments>http://c.hadcoleman.com/2010/01/motorcycle-website-design/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 18:14:54 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[chopper]]></category>
		<category><![CDATA[harley davidson]]></category>
		<category><![CDATA[motorcycle]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com/?p=412</guid>
		<description><![CDATA[This local motorcycle chop shop was in need of a website that could not only catalog their products, but a design that would be representative of the company&#8217;s long standing and professional reputation. I drew on industrial settings for inspiration, while placing a major spotlight on the company brand. To make up for the over-sized [...]]]></description>
			<content:encoded><![CDATA[<p>This local motorcycle chop shop was in need of a website that could not only catalog their products, but a design that would be representative of the company&#8217;s long standing and professional reputation. I drew on industrial settings for inspiration, while placing a major spotlight on the company brand. To make up for the over-sized branding, I implemented some AJAX jQuery calls to slide specific page content in which also adds an interactive or &#8220;Web 2.0&#8243; look and feel.</p>
<p>This site and catalog is powered by a Content Management System, which allows for the client to log in and add new bikes and parts as well as update product information at any time from any computer.</p>
<p><small>This web project was created by FT11 Business Systems.</small></p>
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=412&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2010/01/motorcycle-website-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Mercy of God</title>
		<link>http://c.hadcoleman.com/2010/01/the-mercy-of-god/</link>
		<comments>http://c.hadcoleman.com/2010/01/the-mercy-of-god/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 17:55:27 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Theology]]></category>
		<category><![CDATA[awpink]]></category>
		<category><![CDATA[mercy]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com/?p=406</guid>
		<description><![CDATA[ From the standpoint of the redeemed, the punishment of the wicked is an act of unspeakable mercy. How dreadful would it be if the present order of things should continue forever, when the children of God are obliged to live in the midst of the children of the Devil. Heaven would at once cease [...]]]></description>
			<content:encoded><![CDATA[<blockquote  class="big"><p><img src="http://c.hadcoleman.com/wp-content/uploads/2010/01/arthurwpink-100x100.jpg" alt="" title="Arthur W. Pink" width="100" height="100" class="alignleft size-thumbnail wp-image-408" /> From the standpoint of the redeemed, the punishment of the wicked is an act of unspeakable mercy. How dreadful would it be if the present order of things should continue forever, when the children of God are obliged to live in the midst of the children of the Devil. Heaven would at once cease to be Heaven if the ears of the saints still heard the blasphemous, filthy language of the reprobate. What a mercy that in the New Jerusalem &#8220;there shall in no wise enter into it any thing that defileth, neither whatsoever worketh abomination&#8221; (Rev 21:27) <em>~ A.W. Pink 1886 – 1952</em></p></blockquote>
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=406&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2010/01/the-mercy-of-god/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gourmet Candy Shoppe Website</title>
		<link>http://c.hadcoleman.com/2010/01/gourmet-candy-shoppe-website/</link>
		<comments>http://c.hadcoleman.com/2010/01/gourmet-candy-shoppe-website/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 14:19:29 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[candy]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com/?p=419</guid>
		<description><![CDATA[This classic gourmet candy shoppe had it&#8217;s humble beginnings in Spokane, Washington at the turn of the century. They were in need of an up-to-date look of their website in order to compete with the big name competition. With a professional product photo bundle and a polished new website design they were able to give [...]]]></description>
			<content:encoded><![CDATA[<p>This classic gourmet candy shoppe had it&#8217;s humble beginnings in Spokane, Washington at the turn of the century. They were in need of an up-to-date look of their website in order to compete with the big name competition. With a professional product photo bundle and a polished new website design they were able to give their online branding a complete makeover. We expect big things for the company&#8217;s future online sales. I was responsible for designing, coding and implementing the new design into their current shopping cart software.</p>
<p><small>This web project was created by FT11 Business Systems.</small></p>
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=419&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2010/01/gourmet-candy-shoppe-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Irony In Design</title>
		<link>http://c.hadcoleman.com/2009/10/irony-in-design/</link>
		<comments>http://c.hadcoleman.com/2009/10/irony-in-design/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 15:11:02 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[irony]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com?p=270</guid>
		<description><![CDATA[Advertising may be the only business in the world where the clients with the most money can make demands until they get the agency&#8217;s worst product, while the small client with little to spend must meekly accept the agency&#8217;s best.
Thomas Murray
]]></description>
			<content:encoded><![CDATA[<blockquote class="big"><p>Advertising may be the only business in the world where the clients with the most money can make demands until they get the agency&#8217;s worst product, while the small client with little to spend must meekly accept the agency&#8217;s best.<br />
<em>Thomas Murray</em></p></blockquote>
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=270&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2009/10/irony-in-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Hardware MFG Website</title>
		<link>http://c.hadcoleman.com/2009/07/computer-hardware-mfg-website/</link>
		<comments>http://c.hadcoleman.com/2009/07/computer-hardware-mfg-website/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 22:48:29 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com/?p=429</guid>
		<description><![CDATA[This outfit is a well-known and well-respected computer tower, hardware and accessories manufacturer. They were in need of a CMS with a catalog module to feature all of the products they manufacture. With some interactive jQuery effects and a polished new look, I helped keep their business ahead of the competition by implementing a great [...]]]></description>
			<content:encoded><![CDATA[<p>This outfit is a well-known and well-respected computer tower, hardware and accessories manufacturer. They were in need of a CMS with a catalog module to feature all of the products they manufacture. With some interactive jQuery effects and a polished new look, I helped keep their business ahead of the competition by implementing a great design, and developing this online catalog and presence.</p>
<p><small>This web project was created by FT11 Business Systems.</small></p>
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=429&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2009/07/computer-hardware-mfg-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove and Prevent Revisions in Wordpress</title>
		<link>http://c.hadcoleman.com/2009/06/remove-and-prevent-revisions-in-wordpress/</link>
		<comments>http://c.hadcoleman.com/2009/06/remove-and-prevent-revisions-in-wordpress/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 19:49:51 +0000</pubDate>
		<dc:creator>Chad Coleman</dc:creator>
				<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[revisions]]></category>

		<guid isPermaLink="false">http://c.hadcoleman.com?p=259</guid>
		<description><![CDATA[I recently noticed that a particular post had built up about 10 or 15 revisions for it. I started thinking that of all the posts I have, there have to be quite a few revisions and therefore are creating a hefty sized table in my database. This was run on my WP 2.8, but should [...]]]></description>
			<content:encoded><![CDATA[<p>I recently noticed that a particular post had built up about 10 or 15 revisions for it. I started thinking that of all the posts I have, there have to be quite a few revisions and therefore are creating a hefty sized table in my database. This was run on my WP 2.8, but should work for 2.6 and up.</p>
<p>Here is a solution to prevent revisions from being created, as well as removing all revisions from your database.</p>
<h3>Prevent Revision Creation</h3>
<p>Open wp-config.php and add this to the very bottom of the file, before the php closing tag.</p>
<p><code>define('WP_POST_REVISIONS', false);</code></p>
<p>This completely turns off any revision creation. If you&#8217;d like to restrict revision creation to a set amount per post, you can change &#8216;false&#8217; for the number of revisions you&#8217;d like stored.</p>
<h3>Remove All Revisions From Database</h3>
<p>Open up your database in phpmyadmin and run this SQL Query.</p>
<p><code>DELETE FROM wp_posts WHERE post_type = "revision";</code></p>
<p>And now you&#8217;ll have a more tidy database.</p>
<img src="http://c.hadcoleman.com/?ak_action=api_record_view&id=259&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://c.hadcoleman.com/2009/06/remove-and-prevent-revisions-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
