<?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>Tomislav Mihajlovic (Toma) &#124; SEO and Internet marketing Consultant &#187; title</title>
	<atom:link href="http://www.toma2u.com/tag/title/feed" rel="self" type="application/rss+xml" />
	<link>http://www.toma2u.com</link>
	<description>Tomislav Mihajlovic (Toma) - Search Engine Optimization, First page on Google, AdSense and AdWords consulting, Cheap Websites...</description>
	<lastBuildDate>Tue, 27 Jul 2010 12:12:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Improve Mosets Tree 2.0 SEO by editing listing title and description</title>
		<link>http://www.toma2u.com/internet/joomla/140/improve-mosets-tree-20-seo-by-editing-listing-title-and-description</link>
		<comments>http://www.toma2u.com/internet/joomla/140/improve-mosets-tree-20-seo-by-editing-listing-title-and-description#comments</comments>
		<pubDate>Sun, 18 Oct 2009 17:22:59 +0000</pubDate>
		<dc:creator>toma</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[mosets tree]]></category>
		<category><![CDATA[mtree]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://www.toma2u.com/?p=140</guid>
		<description><![CDATA[Here is a little tip how to improve Mosets Tree 2.0 SEO by changing the title tag and meta description tag. Actualy i was wondering if  i can show Category name in front of Listing title in the title of my pages, because names of my categories are words that my site should be optimized [...]


Related posts:<ol><li><a href='http://www.toma2u.com/internet/joomla/24/how-to-add-description-to-joomla-marketplace' rel='bookmark' title='Permanent Link: How to add description to Joomla Marketplace?'>How to add description to Joomla Marketplace?</a></li>
<li><a href='http://www.toma2u.com/internet/joomla/211/how-to-add-message-counter-to-mosets-tree' rel='bookmark' title='Permanent Link: [How to] Add message counter to Mosets Tree'>[How to] Add message counter to Mosets Tree</a></li>
<li><a href='http://www.toma2u.com/internet/joomla/20/how-to-remove-joomla-generator-tag' rel='bookmark' title='Permanent Link: How to remove joomla generator tag?'>How to remove joomla generator tag?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Here is a little tip how to improve Mosets Tree 2.0 SEO by changing the title tag and meta description tag.</p>
<p>Actualy i was wondering if  i can show <span style="text-decoration: underline;">Category name</span> in front of <span style="text-decoration: underline;">Listing title</span> in the title of my pages, because names of my categories are words that my site should be optimized for.</p>
<p>After some search i found out that Mtree is making invalid meta title tag.</p>
<p>It is generating title tag like this</p>
<pre class="brush: xml;">&lt;meta name=&quot;title&quot; content=&quot;Link name -&quot; /&gt;</pre>
<h4>At the begining i fixed the meta title tag.</h4>
<p>I checked <strong>mtree.php</strong> file, and on line <strong>1420</strong></p>
<p>there is</p>
<pre class="brush: php;">$mainframe-&gt;addMetaTag( 'title' , $link-&gt;link_name.'-'.$cat_name );</pre>
<p>which should be</p>
<pre class="brush: php;">$mainframe-&gt;addMetaTag( 'title' , $link-&gt;link_name.' - '.$link-&gt;cat_name );</pre>
<h4>The second step was to put category name in front of listing name in title tag.</h4>
<p>In the same file <strong>mtree.php</strong>, around line <strong>1416</strong> i found following code</p>
<pre class="brush: php;">$mainframe-&gt;setPageTitle( html_entity_decode_utf8($link-&gt;link_name) );</pre>
<p>and changed it with</p>
<pre class="brush: php;">$mainframe-&gt;setPageTitle( $link-&gt;cat_name.' - '.html_entity_decode_utf8($link-&gt;link_name) );</pre>
<p>This steps made my Mosets Tree titles look like</p>
<p><em>Category name &#8211; Link name</em></p>
<p>Which in some cases can be better for your SEO.</p>
<p>Then i decided to fix my description tags a little by taking first 200 characters from the text and putting them into meta description tag, so on line 1431 i changed:</p>
<pre class="brush: php;">$document-&gt;setDescription( strip_tags($link-&gt;metadesc );</pre>
<p>to</p>
<pre class="brush: php;">$document-&gt;setDescription( substr(strip_tags($link-&gt;link_desc), 0, 200) );</pre>
<p>Hopefully this little steps will help you in optimizing your Mosets tree directory, and get better rankings.</p>
<p>These are not the only thig that will bring your site on the first page of Google, but they can help.</p>
<p>Good luck</p>
<img src="http://www.toma2u.com/?ak_action=api_record_view&id=140&type=feed" alt="joomla, Improve Mosets Tree 2.0 SEO by editing listing title and description,  "  title="Improve Mosets Tree 2.0 SEO by editing listing title and description" />

<p>Related posts:<ol><li><a href='http://www.toma2u.com/internet/joomla/24/how-to-add-description-to-joomla-marketplace' rel='bookmark' title='Permanent Link: How to add description to Joomla Marketplace?'>How to add description to Joomla Marketplace?</a></li>
<li><a href='http://www.toma2u.com/internet/joomla/211/how-to-add-message-counter-to-mosets-tree' rel='bookmark' title='Permanent Link: [How to] Add message counter to Mosets Tree'>[How to] Add message counter to Mosets Tree</a></li>
<li><a href='http://www.toma2u.com/internet/joomla/20/how-to-remove-joomla-generator-tag' rel='bookmark' title='Permanent Link: How to remove joomla generator tag?'>How to remove joomla generator tag?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.toma2u.com/internet/joomla/140/improve-mosets-tree-20-seo-by-editing-listing-title-and-description/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
