<?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>Metal Monster Marketing &#187; SEO</title>
	<atom:link href="http://metalmonstermarketing.com/blog/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://metalmonstermarketing.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 10 Dec 2010 20:18:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>SEO Podcast</title>
		<link>http://metalmonstermarketing.com/blog/seo-podcast/</link>
		<comments>http://metalmonstermarketing.com/blog/seo-podcast/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 19:02:49 +0000</pubDate>
		<dc:creator>Steve Gerencser</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://metalmonstermarketing.com/blog/?p=56</guid>
		<description><![CDATA[I&#8217;ve been one of 4 regulars on the SEO Dojo Radio Podcast since episode #1 along with great SEOs like David Harry, Terry Van Horne and Justin Parks. Most episodes we have a guest interview with an SEO or marketing professional, discuss the latest issues in SEO and rant about the latest idiocy on the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://seotrainingdojo.com/SEO-Dojo-Radio-Podcast-2010/"><img class="alignleft size-full wp-image-57" title="SEO Dojo Radio" src="http://metalmonstermarketing.com/blog/wp-content/uploads/2010/12/DojoRadio-AsHeard-125.gif" alt="" width="125" height="125" /></a> I&#8217;ve been one of 4 regulars on the SEO Dojo Radio Podcast since episode #1 along with great SEOs like <a href="http://twitter.com/#!/thegypsy">David Harry</a>, <a href="http://twitter.com/#!/terryvanhorne">Terry Van Horne</a> and <a href="http://twitter.com/#!/justinparks">Justin Parks</a>.</p>
<p>Most episodes we have a guest interview with an SEO or marketing professional, discuss the latest issues in SEO and rant about the latest idiocy on the net. You can listen to the show on the <a href="http://seotrainingdojo.com/SEO-Dojo-Radio-Podcast-2010/">SEO Dojo Podcast web site</a> or you can subscribe to us on iTunes by searching for <a href="http://itunes.apple.com/us/podcast/seodojo-radio/id398892573">SEODojo in the iTunes store</a>.</p>
<p>Take a listen and let us know what you think. But be warned, this show is not really kid friendly, Justin and Terry tend to swear a lot. <img src='http://metalmonstermarketing.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://metalmonstermarketing.com/blog/seo-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Breadcrumbs for OpenCart</title>
		<link>http://metalmonstermarketing.com/blog/seo-breadcrumbs-for-opencart/</link>
		<comments>http://metalmonstermarketing.com/blog/seo-breadcrumbs-for-opencart/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 14:34:34 +0000</pubDate>
		<dc:creator>Steve Gerencser</dc:creator>
				<category><![CDATA[OpenCart]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[breadcrumbs]]></category>

		<guid isPermaLink="false">http://metalmonstermarketing.com/blog/?p=54</guid>
		<description><![CDATA[OpenCart is one of the more popular open source eCommerce systems available. We use it here for many of our clients and like most aspects of it. One of it&#8217;s failings, however, is the lack of attention to clean URLs in the breadcrumb structure. Fortunately this is a relatively easy fix. As installed, the Home [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://metalmonstermarketing.com/blog/wp-content/uploads/2010/11/opencart.png" rel="lightbox[54]"><img class="alignright size-full wp-image-55" title="opencart" src="http://metalmonstermarketing.com/blog/wp-content/uploads/2010/11/opencart.png" alt="" width="268" height="50" /></a><a href="http://www.opencart.com/">OpenCart</a> is one of the more popular open source eCommerce systems available. We use it here for many of our clients and like most aspects of it. One of it&#8217;s failings, however, is the lack of attention to clean URLs in the breadcrumb structure.</p>
<p>Fortunately this is a relatively easy fix.</p>
<p>As installed, the Home link in the breadcrumb navigation is the rather unweildy <em>/index.php?route=common/home</em> instead of pointing to the clean URL of your choice.</p>
<p>You will need to edit the following pages:</p>
<ul>
<li>/catalog/controller/category.php</li>
<li>/catalog/controller/manufacturer.php</li>
<li>/catalog/controller/product.php</li>
<li>/catalog/controller/search.php</li>
<li>/catalog/controller/special.php</li>
</ul>
<p>Find the following code in each file:</p>
<blockquote><p>$this-&gt;document-&gt;breadcrumbs[] = array(<br />
&#8216;href&#8217;      =&gt; HTTP_SERVER . &#8216;index.php?route=common/home&#8217;,</p></blockquote>
<p>Replace it with this code:</p>
<blockquote><p>$this-&gt;document-&gt;breadcrumbs[] = array(<br />
&#8216;href&#8217;      =&gt; HTTP_SERVER . &#8216;http://www.domain.com&#8217;,</p></blockquote>
<p>Obviously you will need to enter your domain name.</p>
<p>This small change will go a long way toward cleaning up your URL structure and reduce the potential impact of having the Search Engines finding what they see as duplicate content.</p>
]]></content:encoded>
			<wfw:commentRss>http://metalmonstermarketing.com/blog/seo-breadcrumbs-for-opencart/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

