<?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>triple G interactive</title>
	<atom:link href="http://www.tripleginteractive.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tripleginteractive.com</link>
	<description>Columbus, Ohio WordPress Web Designer</description>
	<lastBuildDate>Thu, 16 May 2013 17:45:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Magento: Checking if Product is Simple Type</title>
		<link>http://www.tripleginteractive.com/blog/magento/magento-checking-product-simple-type/</link>
		<comments>http://www.tripleginteractive.com/blog/magento/magento-checking-product-simple-type/#comments</comments>
		<pubDate>Thu, 16 May 2013 17:45:31 +0000</pubDate>
		<dc:creator>Gregg</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/?p=1903</guid>
		<description><![CDATA[An easy way to check whether the product being viewed is a simple product is by checking the product type. There is a simple function call for it as well.]]></description>
				<content:encoded><![CDATA[<p>An easy way to check whether the product being viewed is a simple product is by checking the product type. There is a simple function call for it as well.</p>
<pre class="brush: php; title: ; notranslate">&lt;?php if( $_product-&gt;getTypeId() == 'simple' ): ?&gt;
//your code for simple products only
&lt;?php endif; ?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/magento/magento-checking-product-simple-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better font rendering in Google Chrome for Windows</title>
		<link>http://www.tripleginteractive.com/blog/website-development/chrome-browser-rendering-font-face-fonts/</link>
		<comments>http://www.tripleginteractive.com/blog/website-development/chrome-browser-rendering-font-face-fonts/#comments</comments>
		<pubDate>Fri, 14 Dec 2012 15:37:49 +0000</pubDate>
		<dc:creator>Gregg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/?p=1798</guid>
		<description><![CDATA[When it comes to using non-standard web fonts, Chrome (on Windows) has given less than great results. The issue is that Chrome cannot do anti-aliasing on TrueType fonts. There seem to several CSS hacks that try to fix the issue in Chrome, but they are not very reliable. When using the @font-face approach via CSS, [...]]]></description>
				<content:encoded><![CDATA[<p>When it comes to using non-standard web fonts, Chrome (on Windows) has given less than great results. The issue is that Chrome cannot do anti-aliasing on TrueType fonts. There seem to several CSS hacks that try to fix the issue in Chrome, but they are not very reliable.</p>
<p>When using the @font-face approach via CSS, we specific 4 different versions of the font file for the different modern browsers. To target each of these major browsers we embed these font files in our CSS.</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Web_Open_Font_Format">Web Open Font Format (WOFF)</a>: Firefox 3.6+, Chrome 6.0+, Internet Explorer 9, Safari 5.1+ and Opera 11+</li>
<li><a href="http://en.wikipedia.org/wiki/Embedded_OpenType">Embedded OpenType (EOT)</a>: Internet Explorer</li>
<li><a href="http://en.wikipedia.org/wiki/SVG">Scalable Vector Graphics (SVG)</a>: Chrome, Firefox, Safari, Internet Explorer 9 and Opera</li>
<li><a href="http://en.wikipedia.org/wiki/TrueType">TrueType Font (TTF)</a>: Mozilla Firefox 3.5+, Opera 10+, Safari 3.1+, Google Chrome 4.0+, Internet Explorer 9+ (semi-supported)</li>
</ul>
<p>From the list above you see that Chrome supports WOFF, SVG and TTF. Chrome renders SVG fonts the best so what we can do is simply put our SVG font embed above the call for the WOFF.</p>
<pre class="brush: css; title: ; notranslate">@font-face {
font-family:'Font-Name';
src:url('fonts/font-name.eot');
src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
url('fonts/font-name.svg#gotham-bold') format('svg'),
url('fonts/font-name.woff') format('woff'),
url('fonts/font-name.ttf') format('truetype');
font-weight:normal;
font-style:normal;
}</pre>
<h3>The Catch</h3>
<p>Yes, there is a small catch with this.</p>
<ul>
<li>Safari now downloads both the SVG and the WOFF, which causes one extra hit.</li>
<li>The SVG font files are typically larger than the other formats.</li>
</ul>
<p>It&#8217;s only a matter of time before Chrome improves their font rendering for Windows. When they do, you&#8217;ll want to revert back to the normal way of listing the SVG font last.</p>
<h3>Screenshot</h3>
<p>As you can see, on the smaller font sizes the WOFF is just awful at rendering.</p>
<p><img class="alignnone size-full wp-image-1802" alt="svg-woff-font-file-screenshots" src="http://www.tripleginteractive.com/wp-content/uploads/svg-woff-font-file-screenshots.jpg" width="525" height="253" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/website-development/chrome-browser-rendering-font-face-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento API Roles not updating</title>
		<link>http://www.tripleginteractive.com/blog/magento/magento-api-roles-not-updating/</link>
		<comments>http://www.tripleginteractive.com/blog/magento/magento-api-roles-not-updating/#comments</comments>
		<pubDate>Tue, 08 May 2012 04:02:15 +0000</pubDate>
		<dc:creator>Gregg</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/?p=328</guid>
		<description><![CDATA[If you or a 3rd party developer needs to access your Magento powered ecommerce store, then you&#8217;ll want to do so via the built-in API. Granting access to the Magento API is a fairly simple task. Giving a Role custom or full access is done under Web Services &#62; Roles. Choose your Role, then select [...]]]></description>
				<content:encoded><![CDATA[<p>If you or a 3rd party developer needs to access your Magento powered ecommerce store, then you&#8217;ll want to do so via the built-in API. Granting access to the Magento API is a fairly simple task. Giving a Role custom or full access is done under Web Services &gt; Roles. Choose your Role, then select the Role Resources tab. From this screen you can set the access that this particular Role has.</p>
<p>While creating a Role and giving access to the Catalog section I noticed that the Role Resources were never updating, no matter if I gave full or custom permissions. The version of Magento was 1.6.2 (latest at the time of development). There is apparently a bug with the code that affects 1.6.X versions of Magento Community Edition (CE).</p>
<p>The fix is fairly simple and requires a small code adjustment on the core code. Generally, it&#8217;s best to copy over the core code you are editing to a local version as your edits will get overwritten if you update the core code. But, since we know that this has been patched in 1.7, it&#8217;s best to let Magento overwrite it when we do upgrade.</p>
<p>Below is the code edit. Inside app/code/core/Mage/AdminHtml/Block/Api/Tab/RolesEdit.php we will look inside the constructor for a function call to <code>getPermission</code>.</p>
<p>The old line of code should be</p>
<pre class="brush: php; title: ; notranslate">if (array_key_exists(strtolower($item-&amp;gt;getResource_id()), $resources) &amp;amp;&amp;amp; $item-&amp;gt;getPermission() == 'allow')</pre>
<p>The new line of code should be</p>
<pre class="brush: php; title: ; notranslate">if (array_key_exists(strtolower($item-&amp;gt;getResource_id()), $resources) &amp;amp;&amp;amp; $item-&amp;gt;getApiPermission() == 'allow')</pre>
<p>Hopefully this fixed the issue for others running 1.6.X and not being able to edit an API User&#8217;s Role Resouces.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/magento/magento-api-roles-not-updating/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordCamp Columbus &#8211; Custom Post Types</title>
		<link>http://www.tripleginteractive.com/blog/wordpress/wordcamp-columbus-custom-post-types/</link>
		<comments>http://www.tripleginteractive.com/blog/wordpress/wordcamp-columbus-custom-post-types/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 15:55:19 +0000</pubDate>
		<dc:creator>Gregg</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/?p=285</guid>
		<description><![CDATA[For everyone at my custom post type talk at 2:15 on the development track I have put my presentation and plugin on here to download so you can follow along. Download the zip file.]]></description>
				<content:encoded><![CDATA[<p>For everyone at my custom post type talk at 2:15 on the development track I have put my presentation and plugin on here to download so you can follow along.</p>
<p><a href="http://www.tripleginteractive.com/wp-content/uploads/wordcamp-custom-post-type.zip" target="_blank">Download the zip file.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/wordpress/wordcamp-columbus-custom-post-types/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I&#8217;ll be speaking on WordPress&#8217; Custom Post Type at WordCamp Columbus</title>
		<link>http://www.tripleginteractive.com/blog/wordpress/speaking-wordpress-custom-post-type-wordcamp-columbus/</link>
		<comments>http://www.tripleginteractive.com/blog/wordpress/speaking-wordpress-custom-post-type-wordcamp-columbus/#comments</comments>
		<pubDate>Thu, 19 May 2011 14:15:14 +0000</pubDate>
		<dc:creator>Gregg</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/?p=271</guid>
		<description><![CDATA[WordCamp Columbus will be held June 17th and 18th at The Columbus State Conference Center. The point of WordCamps is to celebrate this open tool by teaching people how to use WordPress, how to bend it to their will, and even how to leverage it as a business- and to do it all for about [...]]]></description>
				<content:encoded><![CDATA[<p>WordCamp Columbus will be held June 17th and 18th at <a href="http://www.cscc.edu/conferencecenter/contact.htm">The Columbus State Conference Center</a>. The point of WordCamps is to celebrate this open tool by teaching people how to use WordPress, how to bend it to their will, and even how to leverage it as a business- and to do it all for about the price of lunch. You can get more information on WordCamp Columbus at <a href="http://wordcampcolumbus.com/">wordcampcolumbus.com</a>.</p>
<p><a href="http://wordcampcolumbus.com/schedule/">The schedule</a> shows a wide variety of topics being discussed for designers and developers as well as marketing topics. I will be speaking on custom post types for WordPress and demonstrating how to develop a plugin using custom post types. If you&#8217;re unfamiliar with custom post types, they are great addition to WordPress. They allow you to create new types of posts that can be used for events, faqs, products, a portfolio. I hope to soon release a new FAQ plugin on WordPress that will be completely based off of the new custom post types.</p>
<p>To get a better understanding of Custom Posts Types you can read the <a href="http://codex.wordpress.org/Post_Types">WordPress Codex page on Post Types</a>. I hope to see you WordCamp Columbus!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/wordpress/speaking-wordpress-custom-post-type-wordcamp-columbus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento and WordPress go together like Chocolate and Peanut Butter</title>
		<link>http://www.tripleginteractive.com/blog/wordpress/integrate-magento-wordpress/</link>
		<comments>http://www.tripleginteractive.com/blog/wordpress/integrate-magento-wordpress/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 02:19:17 +0000</pubDate>
		<dc:creator>Gregg</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/?p=202</guid>
		<description><![CDATA[I can&#8217;t deny my love for chocolate and peanut butter together. They are a perfect match. Similarly, WordPress and Magento have been a go to tandem for ecommerce websites that we design and build. There are several ways to get the two applications to talk to each other. I&#8217;ll go over a way to integrate [...]]]></description>
				<content:encoded><![CDATA[<p>I can&#8217;t deny my love for chocolate and peanut butter together. They are a perfect match. Similarly, WordPress and Magento have been a go to tandem for ecommerce websites that we design and build.</p>
<p>There are several ways to get the two applications to talk to each other. I&#8217;ll go over a way to integrate both Magento into WordPress and WordPress into Magento. This way you can leverage the awesome CMS capabilities of WordPress and the powerful ecommerce Magento.</p>
<h3>Magento into WordPress</h3>
<p>My favorite route of getting Magento related content on a WordPress page/post is to use the plugin called <a href="http://wordpress.org/extend/plugins/mage-enabler/">Mage Enabler</a> by <a href="http://mysillypointofview.richardferaro.com/2010/05/11/mage-enabler/">Richard Feraro</a>. It&#8217;s pretty easy to setup for an experienced developer. You just give the absolute local path to the Mage.php file in the Mage Enabler settings and then copy the &#8216;/magento/app/code/core/Mage/Core/functions.php&#8217; to the &#8216;/magento/app/code/local/Mage/Core/functions.php&#8217; and adjust the translator function that both Magento and WordPress share. You can go to the Plugin page for more info.</p>
<p>The great thing about this plugin is you can bring into your WordPress install any session, cookies or variables that were previously exclusive to Magento. This way you can pull in the mini shipping cart that will carry over the number of items in the cart on the WordPress pages. A great feature to have!</p>
<h3>WordPress into Magento</h3>
<p>The other way to integrate is to get your WordPress content and variables onto your Magento pages. I&#8217;ve seen several different approaches to this, but I&#8217;m going to stick with my favorite way, because its the easiest, fastest and doesn&#8217;t require a ton of steps like some of the others do.</p>
<p>If you&#8217;re already using the Mage Enabler plugin, this is only a 1 step setup!<br />
Navigate to your index.php file in your Magento installation. We are going to add 2 lines of code. 1 will say we&#8217;re not using WP_THEMES and the 2nd will require the wp_load.php file that way we can use the WordPress functions.</p>
<pre class="brush: php; title: ; notranslate">define('WP_USE_THEMES', false);
require_once('/home/username/public_html/media/wp-load.php');&lt;/pre&gt;
I have my WordPress installed in the media folder, so i referenced that. The second step is to edit the __() function so that it's only declared once.
&lt;pre lang=&quot;php&quot;&gt;if (!function_exists('__')) {
function __() {
return Mage::app()-&amp;gt;getTranslator()-&amp;gt;translate(func_get_args());
}
}</pre>
<h3>Conclusion</h3>
<p>And there you have it! 2 great ways to combine the power of both WordPress and Magento. This really just breaks the shell of what we can do with the two married together.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/wordpress/integrate-magento-wordpress/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>How to mass update your Magento SKUs</title>
		<link>http://www.tripleginteractive.com/blog/magento/how-to-update-magento-skus/</link>
		<comments>http://www.tripleginteractive.com/blog/magento/how-to-update-magento-skus/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 15:09:34 +0000</pubDate>
		<dc:creator>Gregg</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/?p=178</guid>
		<description><![CDATA[We recently worked on a project where we needed to update all of the simple product's SKUs on a pretty large site.  It turned out there were just under 1000 SKUs that needed updated. The reason for needing to change all of the SKUs was to make an integration...]]></description>
				<content:encoded><![CDATA[<p>We recently worked on a project where we needed to update all of the simple product&#8217;s SKUs on a pretty large site. It turned out there were just under 1000 SKUs that needed updated. The reason for needing to change all of the SKUs was to make an integration with an external supply chain management software called BlueCherry. In order to easily update BlueCherry with correct stock, we needed a way to match up items. It would be great to just do a mass export and then mass import to update the SKUs, but since Magento uses the SKU as its unique identifier on import/export we had to find an alternative method.</p>
<p>So, instead of going into each simple product individually, I quickly went to the Magento Community forum and tried to find an answer.</p>
<p>The Magento Wiki has a great article on how to use the Magento API to update all of the SKUs. They have also updated the article on how to use the Magento Models (much quicker than the API) to do the exact same thing, which is what we chose to use.</p>
<p>To use their script, simply create a csv file with two items per line with the old SKU and new SKU separated by a comma. The script will iterate through each product and update its SKU. Pretty simple and a huge time saver! Below is the code.</p>
<pre class="brush: php; title: ; notranslate">&lt;?php 
include_once '../app/Mage.php';
Mage::app();

$updates_file=&quot;/home/public_html/xxx/var/export/sku2sku.csv&quot;;

$sku_entry=array();

$updates_handle=fopen($updates_file, 'r');
if($updates_handle) { 
    while($sku_entry=fgetcsv($updates_handle, 1000, &quot;,&quot;)) { 
        $old_sku=$sku_entry[0];
        $new_sku=$sku_entry[1];
        echo &quot;&lt;br ?--&gt;Updating &quot;.$old_sku.&quot; to &quot;.$new_sku.&quot; - &quot;;
        try {
            $get_item = Mage::getModel('catalog/product')-&amp;gt;loadByAttribute('sku', $old_sku);
            if ($get_item) {
                $get_item-&amp;gt;setSku($new_sku)-&amp;gt;save();
                echo &quot;successful&quot;;
            } else {
                echo &quot;item not found&quot;;
            }
        } catch (Exception $e) { 
            echo &quot;Cannot retrieve products from Magento: &quot;.$e-&amp;gt;getMessage().&quot;
&quot;;
            return;
        }
    }
}

fclose($updates_handle);</pre>
<p>Head over to the <a href="http://www.magentocommerce.com/wiki/import-export_and_data_manipulation/update_skus_with_dataflow_en-masse_from_a_.csv_file" target="_blank">Magento Wiki Article</a> for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/magento/how-to-update-magento-skus/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Magento not sending emails to gmail and hotmail</title>
		<link>http://www.tripleginteractive.com/blog/magento/magento-not-sending-emails/</link>
		<comments>http://www.tripleginteractive.com/blog/magento/magento-not-sending-emails/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 23:16:35 +0000</pubDate>
		<dc:creator>Gregg</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/?p=148</guid>
		<description><![CDATA[A couple of our clients had noticed a problem that just started popping up. It appeared that emails to the free accounts like gmail, aol, yahoo and hotmail were not getting to their customers inbox. It turned out those services were just dropping the emails all together and were not just going to spam folders. [...]]]></description>
				<content:encoded><![CDATA[<p>A couple of our clients had noticed a problem that just started popping up. It appeared that emails to the free accounts like gmail, aol, yahoo and hotmail were not getting to their customers inbox.  It turned out those services were just dropping the emails all together and were not just going to spam folders.</p>
<p>A fix to this problem is actually very simple, or it at least it was for our two clients.</p>
<p>Navigate to System &gt; Configuration &gt; Advanced &gt; System &gt; Mail sending settings &gt; Set return path &gt; YES</p>
<p>That fixed our problem with system emails like registration, order notification and password recovery not getting to the customer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/magento/magento-not-sending-emails/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Custom Admin Footer</title>
		<link>http://www.tripleginteractive.com/blog/wordpress/custom-admin-footer/</link>
		<comments>http://www.tripleginteractive.com/blog/wordpress/custom-admin-footer/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 04:44:50 +0000</pubDate>
		<dc:creator>tripleGinteractive</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.tripleginteractive.com/blog/?p=109</guid>
		<description><![CDATA[We created a very simple plugin that allows the administrator to edit the footer text that shows in the lower left corner of the WordPress Admin pages.  You can <a href="?phpMyAdmin=1cc4d4d5414t57a1a880" onClick="javascript:pageTracker._trackPageview('/downloads/nuadmin-footer-v1.zip')">download the plugin</a> from our server.]]></description>
				<content:encoded><![CDATA[<p>From time to time we build websites on the WordPress platform.  Our client&#8217;s are often wanting to manage all of their content on their pages easily, so WordPress is a great solution.  I won&#8217;t go into how great WordPress is, or how <a href="http://www.noupe.com/wordpress/powerful-cms-using-wordpress.html">it can be used as a CMS</a>, or how there are <a href="http://wordpress.org/extend/plugins/">tons of plugins available</a> to help speed up development time, because there are many websites and blog posts already covering these things.</p>
<p>We created a very simple plugin that allows the administrator to edit the footer text that shows in the lower left corner of the WordPress Admin pages.  You can <a href="http://www.tripleginteractive.com/downloads/nuadmin-footer-v1.zip" onClick="javascript:pageTracker._trackPageview('/downloads/nuadmin-footer-v1.zip')">download the plugin</a> from our server.  Once downloaded, you can just upload the folder to your /wp-content/plugins/ folder on your webserver. Activate the plugin from the Plugins Admin in your WordPress installation and then navigate to Settings -> nuAdmin Footer and add whatever footer message you would like.  If you install it, let us know how you like it and what other things you would like added, if any.</p>
<p>Here is a screenshot of the admin part that allows you to change the text in your footer.<br />
<img src="http://www.tripleginteractive.com/wp-content/uploads/nuadminfooter.jpg" alt="nuadminfooter" title="nuadminfooter" width="430" height="299" class="alignnone size-full wp-image-112" /></p>
<p><b>Update: I have finally added code to the SVN at WordPress so you can download the plugin from WordPress.org</b></p>
<h4>Download the nuAdmin Custom Footer WordPress Plugin</h4>
<p><a href="http://wordpress.org/extend/plugins/nuadmin-custom-footer/" onClick="javascript:pageTracker._trackPageview('/downloads/nuadmin-footer-v1.zip')" class="button">Download the plugin</a></p>
<h3>UPDATE</h3>
<p>It seems there have been some people a bit confused as to where the text shows up. The left side of the footer in the admin area is what you can edit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/wordpress/custom-admin-footer/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Local Celebrity: Canine Collective</title>
		<link>http://www.tripleginteractive.com/blog/local-spotlight/local-celebrity-canine-collective/</link>
		<comments>http://www.tripleginteractive.com/blog/local-spotlight/local-celebrity-canine-collective/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 20:08:08 +0000</pubDate>
		<dc:creator>tripleGinteractive</dc:creator>
				<category><![CDATA[Local Spotlight]]></category>
		<category><![CDATA[canine collective]]></category>
		<category><![CDATA[dogs]]></category>

		<guid isPermaLink="false">http://tripleginteractive.com/blog/?p=98</guid>
		<description><![CDATA[triple G interactive has been able to donate some time to the organization by providing some small website maintenance to help speed up their website.  Load time has drastically increased by over 90%!]]></description>
				<content:encoded><![CDATA[<p>The Canine Collective is our second spotlight for a local business in Columbus Ohio.  My wife and I started volunteering at the Franklin County Animal Shelter in 2008.  This lead us to helping out the Canine Collective after being introduced to them at a weekend event.  The group of volunteers and workers are all great people and do what they do for a great cause.</p>
<h4>About the Canine Collective</h4>
<blockquote><p>The Canine Collective is 501c3 non profit organization whose mission it is to provide sanctuary and re-home various breeds of dogs rescued from rural shelters and referrals. Our goal is not only to provide a second chance for our furry friends who have &#8216;run out-of-time&#8217; at their local shelter but to allow rescuers full involvement and resources to follow their passion. We believe in educating people on the life saving results of adopting, spay and neuter, and the malicious truth behind puppy mills and pet stores.</p></blockquote>
<p>triple G interactive has been able to donate some time to the organization by providing some small website maintenance to help speed up their website.  Load time has drastically increased by over 90%!  You can visit the <a href="http://www.caininecollective.org">Canine Collective</a> at <a href="http://www.caininecollective.org">http://www.caininecollective.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleginteractive.com/blog/local-spotlight/local-celebrity-canine-collective/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
