<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>MosTree and Search Engine Optimization Part 2</title>
		<description>Discuss MosTree and Search Engine Optimization Part 2</description>
		<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/</link>
		<lastBuildDate>Thu, 09 Feb 2012 03:22:56 +0000</lastBuildDate>
		<generator>JComments</generator>
		<atom:link href="http://www.alledia.com/component/jcomments/feed/com_content/138/10/" rel="self" type="application/rss+xml" />
		<item>
			<title>UK Business Directory says:</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-9187</link>
			<description><![CDATA[Can a user enter links back to their site using keywords in a listing on mosets tree?]]></description>
			<dc:creator>UK Business Directory</dc:creator>
			<pubDate>Sun, 27 Dec 2009 03:59:22 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-9187</guid>
		</item>
		<item>
			<title>nenesio says:</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5912</link>
			<description><![CDATA[this working en mosets tree 1.5.x and 2.x.x, And to the metas tags description and keywords functions change en joomla.php line 537 and 556 : $this->_head['meta'][$i][1] = $content .', '. $this->_head['meta'][$i][1]; to $this->_head['meta'][$i][1] = $this->_head['meta'][$i][1] .', '. $content;]]></description>
			<dc:creator>nenesio</dc:creator>
			<pubDate>Sat, 22 Dec 2007 22:21:38 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5912</guid>
		</item>
		<item>
			<title>Steve Burge says:</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5911</link>
			<description><![CDATA[Wonderful - thank you for a great hack nenesio! :-) Which version of Mostree are you working with?]]></description>
			<dc:creator>Steve Burge</dc:creator>
			<pubDate>Sat, 22 Dec 2007 16:21:51 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5911</guid>
		</item>
		<item>
			<title>
I have a better Hack</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5910</link>
			<description><![CDATA[There is a much better Hack, For example using mosets tree for car sales. As explained here would look something like this Directory - Honda - Site Name More SEO would look something like this Buying your Honda Comfortable in shares - Site name First you will includes / joomla.php find this function setPageTitle( $title=null ) &#123; if (@$GLOBALS['mosConfig_paget itles']) &#123; $title = trim( htmlspecialchar s( $title ) ); $title = stripslashes($t itle); $this->_head['title'] = $title ? $GLOBALS['mosConfig_siten  ame'] . ' - '. $title : $GLOBALS['mosConfig_siten  ame']; &#125; &#125; chage to : function setPageTitle( $title=null ) &#123; if (@$GLOBALS['mosConfig_paget itles']) &#123; $title = trim( htmlspecialchar s( $title ) ); $this->_head['title'] = $title ? $title . ' - ' . $GLOBALS['mosConfig_siten  ame'] : $GLOBALS['mosConfig_siten  ame']; &#125; &#125; Now you will mtree.php # Set Page Title if ( $cat_id == 0 ) &#123; $mainframe->setPageTitle( $_MT_LANG->ROOT ); $cat->cat_allow_submi ssion = $mtconf->get('allow_listings_ submission_in_r oot'); &#125; else &#123; $mainframe->setPageTitle( html_entity_dec ode_utf8($cat->cat_name) ); &#125; change to : # Set Page Title if ( $cat_id == 0 ) &#123; $mainframe->setPageTitle( 'Descargas Gratis de Software' ); $cat->cat_allow_submi ssion = $mt_allow_listi ngs_ submission_in_r oot; &#125; else &#123; //added for extra cats $database->setQuery( "SELECT cat_id, cat_name, cat_parent, cat_published FROM #__mt_cats WHERE cat_id='".$cat->cat_parent."' AND cat_published='1' LIMIT 1" ); $database->loadObject( $cat2 ); $database->setQuery( "SELECT cat_id, cat_name, cat_parent, cat_published FROM #__mt_cats WHERE cat_id='".$cat2->cat_parent."' AND cat_published='1' LIMIT 1" ); $database->loadObject( $cat3 ); if($cat2!='' && $cat3!='')&#123; # Set Page Title $pagepathway = ( 'Buying your ' . $cat3->cat_name . ' : ' . $cat2->cat_name . ' : ' . $cat->cat_name. ' Comfortable in shares' ); &#125;elseif($cat2 !='' && $cat3=='')&#123; # Set Page Title $pagepathway = ( 'DBuying your ' . $cat2->cat_name . ' : ' . $cat->cat_name. ' Comfortable in shares' ); &#125;elseif($cat2 =='' && $cat3 =='')&#123; # Set Page Title $pagepathway = ( 'Buying your ' . $cat->cat_name. ' Comfortable in shares' ); &#125; $mainframe->setPageTitle( $pagepathway ); #$mainframe->setPageTitle( $cat->cat_name ); &#125; But also it is intended that the listing page has seo, find this : # Set Page Title $mainframe->setPageTitle( html_entity_dec ode_utf8($link->link_name) ); and change to : # Set Page Title $mainframe->setPageTitle( 'Buying your ' . $link->link_name. ' Comfortable in shares' ); This is the listing page daria something like this: Buying your HONDA ACCORD 2008 Comfortable in shares - Site name ;-) ;-) this is very very very seo]]></description>
			<dc:creator>nenesio</dc:creator>
			<pubDate>Sat, 22 Dec 2007 14:51:41 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5910</guid>
		</item>
		<item>
			<title>web developer</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5620</link>
			<description><![CDATA[Hi Could you please help me to solve this problem on mosets tree search engine . When i want to search "plumbing" instead search "i am looking for plumber" when i do that does not works. Thanks.]]></description>
			<dc:creator>ahmad</dc:creator>
			<pubDate>Tue, 23 Oct 2007 17:47:02 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5620</guid>
		</item>
		<item>
			<title>Steve Burge says:</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5530</link>
			<description><![CDATA[Hi Matt Yes, if San Diego, Dallas etc. are part of the category name. Otherwise, you may need to create a unique hack (similar to the Joomlatwork SEF Patch) which allows unique page titles for each listing and category.]]></description>
			<dc:creator>Steve Burge</dc:creator>
			<pubDate>Sun, 30 Sep 2007 16:27:01 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5530</guid>
		</item>
		<item>
			<title>Changing the title tag per category or per listing...</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5529</link>
			<description><![CDATA[This is a great tip, I will most definitely add this to my 'to do' list!! One question I have is... how can you change the title on a more granular level? For example, if I want the title tag to be different for different categories how would I go about doing that? For example, if location based, and service oriented, I would not want "appliance repair" or "lawn care" to cross over into every category. How could you add the actual category 'theme' to that specific category and not others? i.e. title tags for geographical based service index: San Diego - Lawn Care and Grass Mowing Services Dallas - Lawn Care and Grass Mowing Services but then also have a separate category with titles... San Diego - Small Engine Repair and Maintenance Dallas - Small Engine Repair and Maintenance These would be two separate categories etc... So would you add the cat_name variable to the page title string so listings in that specific category would also have the category following the "location" which is also the url? I think that would work, but wanted to see what you guys though... By the way, your site is great!! Matt]]></description>
			<dc:creator>Onsite IT Resources</dc:creator>
			<pubDate>Sat, 29 Sep 2007 10:45:07 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-5529</guid>
		</item>
		<item>
			<title>Alledia</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-4906</link>
			<description><![CDATA[Hi SkyJuice. This file should work for all MosTree templates. Part 1 of the tutorial should also need very little adapting for Bluetree. MosTree shares a lot of files between templates.]]></description>
			<dc:creator>Steve Burge</dc:creator>
			<pubDate>Wed, 07 Feb 2007 09:41:08 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-4906</guid>
		</item>
		<item>
			<title>how about bluetree template?</title>
			<link>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-4905</link>
			<description><![CDATA[did u have hack for bluetree temlate?]]></description>
			<dc:creator>skyjuice</dc:creator>
			<pubDate>Wed, 07 Feb 2007 04:17:50 +0000</pubDate>
			<guid>http://www.alledia.com/blog/search-engine-optimisation-seo/mostree-and-search-engine-optimization-part-2/#comment-4905</guid>
		</item>
	</channel>
</rss>

