<?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>Matt Thiessen &#187; matt</title>
	<atom:link href="http://matt.thiessen.us/author/matt/feed/" rel="self" type="application/rss+xml" />
	<link>http://matt.thiessen.us</link>
	<description>Learning to make the hard things easy</description>
	<lastBuildDate>Sun, 05 Feb 2012 04:06:14 +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>Adding or Removing Profile Fields</title>
		<link>http://matt.thiessen.us/2011/11/adding-or-removing-profile-fields/</link>
		<comments>http://matt.thiessen.us/2011/11/adding-or-removing-profile-fields/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 16:04:13 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=517</guid>
		<description><![CDATA[function my_contactmethods( $contactmethods ) { // add $contactmethods['twitter'] = 'Twitter'; $contactmethods['facebook'] = 'Facebook'; $contactmethods['blog'] = 'Blog'; // remove unset($contactmethods['aim']); unset($contactmethods['jabber']); unset($contactmethods['yim']); return $contactmethods; } add_filter('user_contactmethods','my_contactmethods',10,1);]]></description>
			<content:encoded><![CDATA[<pre class="wp-code-highlight prettyprint">

function my_contactmethods( $contactmethods ) {

	// add
	$contactmethods['twitter'] = 'Twitter';
	$contactmethods['facebook'] = 'Facebook';
	$contactmethods['blog'] = 'Blog';

	// remove
	unset($contactmethods['aim']);
	unset($contactmethods['jabber']);
	unset($contactmethods['yim']);

	return $contactmethods;
}
add_filter('user_contactmethods','my_contactmethods',10,1);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2011/11/adding-or-removing-profile-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slideshow Gallery not displaying after recent update</title>
		<link>http://matt.thiessen.us/2011/11/slideshow-gallery-not-displaying-after-recent-update/</link>
		<comments>http://matt.thiessen.us/2011/11/slideshow-gallery-not-displaying-after-recent-update/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 03:14:56 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[slideshow gallery]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=511</guid>
		<description><![CDATA[/* // Inclusion: Einbindung von Slideshow Gallery Pro &#124;&#124; Fritz echo &#34;&#60;!-- Gallery existiert GPS Start --&#62;&#34;; echo do_shortcode('[gpslideshow custom=1 align=right thumbs=off caption=on auto=on]'); echo &#34;&#60;!-- Gallery existiert GPS Ende --&#62;&#34;; */ // Inclusion: Slideshow Gallery Standard &#124;&#124; Fritz &#124;&#124; 22/11/2011 echo &#34;&#60;!-- Gallery existiert Start --&#62;&#34;; echo do_shortcode('[slideshow custom=1]'); echo &#34;&#60;!-- Gallery existiert Ende [...]]]></description>
			<content:encoded><![CDATA[<pre class="wp-code-highlight prettyprint">
/*
// Inclusion: Einbindung von Slideshow Gallery  Pro || Fritz
echo &quot;&lt;!-- Gallery existiert GPS Start --&gt;&quot;;
echo do_shortcode('[gpslideshow custom=1 align=right thumbs=off caption=on auto=on]');
echo &quot;&lt;!-- Gallery existiert GPS Ende --&gt;&quot;;
*/

// Inclusion: Slideshow Gallery Standard || Fritz || 22/11/2011
echo &quot;&lt;!-- Gallery existiert Start --&gt;&quot;;
echo do_shortcode('[slideshow custom=1]');
echo &quot;&lt;!-- Gallery existiert Ende --&gt;&quot;;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2011/11/slideshow-gallery-not-displaying-after-recent-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a meta_box to all Post Types</title>
		<link>http://matt.thiessen.us/2011/11/adding-a-meta_box-to-all-post-types/</link>
		<comments>http://matt.thiessen.us/2011/11/adding-a-meta_box-to-all-post-types/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 01:03:00 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=508</guid>
		<description><![CDATA[$post_types = get_post_types( array( '_builtin' =&#62; false ), 'objects' ); // Gets all custom types array_push( $post_types, get_post_type_object( 'post' ), get_post_type_object( 'page') ); // Adds back the 'post' and 'page' types while ommitting attachments, revisions, menus, etc. foreach ( $post_types as $type ) { add_meta_box( . . . ); }]]></description>
			<content:encoded><![CDATA[<pre class="wp-code-highlight prettyprint">
$post_types = get_post_types( array( '_builtin' =&gt; false ), 'objects' );  // Gets all custom types
       array_push( $post_types, get_post_type_object( 'post' ), get_post_type_object( 'page')  ); // Adds back the 'post' and 'page' types while ommitting attachments, revisions, menus, etc.
       foreach ( $post_types as $type ) {
               add_meta_box( . . . );
       }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2011/11/adding-a-meta_box-to-all-post-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP-o-Matic breaks WordPress Related Links</title>
		<link>http://matt.thiessen.us/2011/11/wp-o-matic-breaks-wordpress-related-links/</link>
		<comments>http://matt.thiessen.us/2011/11/wp-o-matic-breaks-wordpress-related-links/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 15:27:09 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp-o-matic]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=491</guid>
		<description><![CDATA[function adminInit() { auth_redirect(); // force display of a certain section $this-&#62;section = ($this-&#62;setup) ? ((isset($_REQUEST['s']) &#38;&#38; $_REQUEST['s']) ? $_REQUEST['s'] : $this-&#62;sections[0]) : 'setup'; // if (isset($_SERVER['HTTP_USER_AGENT']) &#38;&#38; (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) // die('Please switch to Firefox / Safari'); wp_enqueue_script('prototype'); wp_enqueue_script('wpoadmin', $this-&#62;tplpath . '/admin.js', array('prototype'), $this-&#62;version); if ($this-&#62;section == 'list') wp_enqueue_script('listman'); //if ( WPOTools::isAjax() ) [...]]]></description>
			<content:encoded><![CDATA[<p><code>function adminInit() {<br />
		auth_redirect();</p>
<p>		// force display of a certain section<br />
		$this-&gt;section = ($this-&gt;setup) ? ((isset($_REQUEST['s']) &amp;&amp; $_REQUEST['s']) ? $_REQUEST['s'] : $this-&gt;sections[0]) : 'setup';</p>
<p>//    if (isset($_SERVER['HTTP_USER_AGENT']) &amp;&amp; (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))<br />
//      die('Please switch to Firefox / Safari');</p>
<p>		wp_enqueue_script('prototype');<br />
		wp_enqueue_script('wpoadmin', $this-&gt;tplpath . '/admin.js', array('prototype'), $this-&gt;version);</p>
<p>		if ($this-&gt;section == 'list')<br />
			wp_enqueue_script('listman');</p>
<p>		//if ( WPOTools::isAjax() ) {<br />
		if ( WPOTools::isAjax() &amp;&amp;  $this-&gt;section != 'home' ) { // Matt Thiessen 11/8/11<br />
			$this-&gt;admin();<br />
			exit;<br />
		}<br />
	}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2011/11/wp-o-matic-breaks-wordpress-related-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NextGen Gallery fails to create new gallery</title>
		<link>http://matt.thiessen.us/2011/10/nextgen-gallery-fails-to-create-new-gallery/</link>
		<comments>http://matt.thiessen.us/2011/10/nextgen-gallery-fails-to-create-new-gallery/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 15:23:26 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=488</guid>
		<description><![CDATA[For some reason the slug field was missing in the wp_6_ngg_gallery on one of my WordPress multisite blogs. The fix . . . ALTER TABLE `wp_6_ngg_gallery` ADD `slug` VARCHAR( 255 ) NULL AFTER `name`; ALTER TABLE `wp_6_ngg_pictures` ADD `image_slug` VARCHAR NOT NULL AFTER `pid`]]></description>
			<content:encoded><![CDATA[<p>For some reason the slug field was missing in the wp_6_ngg_gallery on one of my WordPress multisite blogs.</p>
<p>The fix . . .</p>
<p><code>ALTER TABLE `wp_6_ngg_gallery` ADD `slug` VARCHAR( 255 ) NULL AFTER `name`;</code><br />
<code>ALTER TABLE `wp_6_ngg_pictures` ADD `image_slug` VARCHAR NOT NULL AFTER `pid`</code></p>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2011/10/nextgen-gallery-fails-to-create-new-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Growing Onions</title>
		<link>http://matt.thiessen.us/2011/04/growing-onions/</link>
		<comments>http://matt.thiessen.us/2011/04/growing-onions/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 03:34:24 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Gardening]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=446</guid>
		<description><![CDATA[Springtime is right around the corner and the sun is getting stronger. The weather is still too cold to plant anything outside, but perfect for the windowsill. Just planted a second row of onions tonight; they&#8217;re a week behind the first three.]]></description>
			<content:encoded><![CDATA[<p><a href="http://matt.thiessen.us/wp-content/uploads/2011/04/SAM_0416.jpg"><img src="http://matt.thiessen.us/wp-content/uploads/2011/04/SAM_0416-300x168.jpg" alt="" title="Growing Onions" width="300" height="168" class="alignleft size-medium wp-image-447" /></a></p>
<p>Springtime is right around the corner and the sun is getting stronger.  The weather is still too cold to plant anything outside, but perfect for the windowsill.  Just planted a second row of onions tonight; they&#8217;re a week behind the first three.</p>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2011/04/growing-onions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transplanted Oak Tree</title>
		<link>http://matt.thiessen.us/2011/04/transplanted-oak-tree/</link>
		<comments>http://matt.thiessen.us/2011/04/transplanted-oak-tree/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 03:24:17 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Trees]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=441</guid>
		<description><![CDATA[My transplanted oak tree that was grown from a volunteer in my yard. I mowed around it where it first grew for 5 years until it got this size. I read somewhere that you should transplant a tree in the Springtime before &#8220;bud burst&#8221; to avoid shock from transplanting.]]></description>
			<content:encoded><![CDATA[<p><a href="http://matt.thiessen.us/wp-content/uploads/2011/04/SAM_0414.jpg"><img src="http://matt.thiessen.us/wp-content/uploads/2011/04/SAM_0414-300x168.jpg" alt="" title="Transplanted Oak Tree" width="300" height="168" class="alignleft size-medium wp-image-442" /></a> My transplanted oak tree that was grown from a volunteer in my yard.  I mowed around it where it first grew for 5 years until it got this size.  I read somewhere that you should transplant a tree in the Springtime before &#8220;bud burst&#8221; to avoid shock from transplanting.</p>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2011/04/transplanted-oak-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SlidePress Plugin Redirect Bug</title>
		<link>http://matt.thiessen.us/2010/11/slidepress-plugin-redirect-bug/</link>
		<comments>http://matt.thiessen.us/2010/11/slidepress-plugin-redirect-bug/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 14:24:46 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[capabilities]]></category>
		<category><![CDATA[meta_key]]></category>
		<category><![CDATA[meta_value]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[SlidePress]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=411</guid>
		<description><![CDATA[When clicking on settings links for the SlidePress plugin in a multi-user WordPress site the plugin would redirect to /wp-admin/?c=1 for each domain except the parent site. [code lang="php"]function get_current_user_role() { global $current_user, $wp_roles; $role_names = $wp_roles -&#62; get_names(); /* UPDATED 11/2/2010 9:21 AM * by matt.thiessen@sourcemedia.net */ // modified [start] reset($current_user-&#62;roles); $first_key = key($current_user-&#62;roles); [...]]]></description>
			<content:encoded><![CDATA[<p>When clicking on settings links for the SlidePress plugin in a multi-user WordPress site the plugin would redirect to /wp-admin/?c=1 for each domain except the parent site.</p>
<p>[code lang="php"]function get_current_user_role() {<br />
global $current_user, $wp_roles;<br />
$role_names = $wp_roles -&gt; get_names();<br />
/* UPDATED 11/2/2010 9:21 AM<br />
* by matt.thiessen@sourcemedia.net<br />
*/<br />
// modified [start]<br />
reset($current_user-&gt;roles);<br />
$first_key = key($current_user-&gt;roles);<br />
return preg_replace( "/\|.*/", '', $role_names[$current_user-&gt;roles[$first_key]]);<br />
/*old*///return preg_replace( "/\|.*/", '', $role_names[$current_user-&gt;roles[0]]);<br />
// modified [end]<br />
}[\code]</p>
<p>Also, make sure if you are an admin user with super user privileges you are added at a admin user to the site you are using the SlidePress plugin.</p>
<p><a href="http://matt.thiessen.us/wp-content/uploads/2010/11/add-a-new-user.png"><img class="alignleft size-full wp-image-416" title="add-a-new-user" src="http://matt.thiessen.us/wp-content/uploads/2010/11/add-a-new-user.png" alt="" width="394" height="240" /></a></p>
<p>This will add proper capabilities to the database in the wp_usermeta table.<br />
meta_key: wp_25_capabilities<br />
meta_value: a:1:{s:13:"administrator";s:1:"1";}</p>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2010/11/slidepress-plugin-redirect-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Still Paying Retail with Online Shopping?</title>
		<link>http://matt.thiessen.us/2010/09/still-paying-retail-with-online-shopping/</link>
		<comments>http://matt.thiessen.us/2010/09/still-paying-retail-with-online-shopping/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 01:15:12 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Online Shopping]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=388</guid>
		<description><![CDATA[Why? If you are not hunting around for discounts before you shop online you are getting ripped off. When you shop at the FHTM Rewards Mall you can save yourself up to 30% in rebates and 60% in discounts.]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/File:Winkelcentrum_%28binnen%29.jpg"><img title="The inside view of a Shopping Mall" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Winkelcentrum_%28binnen%29.jpg/300px-Winkelcentrum_%28binnen%29.jpg" alt="The inside view of a Shopping Mall" width="300" height="225" /></a></dt>
</dl>
</div>
</div>
<p>Why? If you are not hunting around for discounts before you shop online you are getting ripped off.  When you shop at the <a href="http://bsprewards.com/fortune/index.cfm?memid=0628941" target="_blank">FHTM Rewards Mall</a> you can save yourself up to 30% in rebates and 60% in discounts.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=38bb74ca-e5f2-4a9c-9d88-e4e041b8609e" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2010/09/still-paying-retail-with-online-shopping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lee Ann Womack at Fortune Fest 2010</title>
		<link>http://matt.thiessen.us/2010/08/lee-ann-womack-at-fortune-fest-2010/</link>
		<comments>http://matt.thiessen.us/2010/08/lee-ann-womack-at-fortune-fest-2010/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 04:45:48 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Fortune]]></category>
		<category><![CDATA[Bluegrass]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Kentucky]]></category>
		<category><![CDATA[Lee Ann Womack]]></category>
		<category><![CDATA[Lexington]]></category>
		<category><![CDATA[Lexington Kentucky]]></category>
		<category><![CDATA[Rupp Arena]]></category>
		<category><![CDATA[United States]]></category>

		<guid isPermaLink="false">http://matt.thiessen.us/?p=361</guid>
		<description><![CDATA[Sara and I will be attending Fortune Fest 2010 in Lexington, KY next week. Also attending is my brother Doug and his wife, Sonya. We will be at the Rupp Arena as it&#8217;s the only building large enough in the area to hold the large number of Representatives gathering for the annual meeting.  The corporate [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/File:Lee_Ann_Womack_head.jpg"><img title="Lee Ann Womack signing an autograph." src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Lee_Ann_Womack_head.jpg/300px-Lee_Ann_Womack_head.jpg" alt="Lee Ann Womack signing an autograph." width="300" height="235" /></a></dt>
</dl>
</div>
</div>
<p>Sara and I will be attending Fortune Fest 2010 in Lexington, KY next week.  Also attending is my brother Doug and his wife, Sonya.  We will be at the Rupp Arena as it&#8217;s the only building large enough in the area to hold the large number of Representatives gathering for the annual meeting.  The corporate offices for FHTM is located in Lexington.</p>
<p>We will enjoy performances from Lee Ann Womack, Paul Overstreet and Garth Fundis.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=7ef65898-ebe7-4692-a663-055377f05cab" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://matt.thiessen.us/2010/08/lee-ann-womack-at-fortune-fest-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

