<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Tutorial: Turning WordPress into a CMS using WPML</title>
	<atom:link href="http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=tutorial-turning-wordpress-into-a-cms-using-wpml</link>
	<description>Life as a Director of Front End Development at High Road Communications, Ottawa</description>
	<lastBuildDate>Tue, 24 Aug 2010 12:20:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: gunawan</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-2428</link>
		<dc:creator>gunawan</dc:creator>
		<pubDate>Mon, 21 Jun 2010 09:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-2428</guid>
		<description>thank you for the information, it is very important to me</description>
		<content:encoded><![CDATA[<p>thank you for the information, it is very important to me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Austin</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-2385</link>
		<dc:creator>Austin</dc:creator>
		<pubDate>Mon, 17 May 2010 17:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-2385</guid>
		<description>Oh that helps a lot! I will definitely use that in my next website. For my current one I found a workaround. I simply used css to hide the language link that I am currently on. like so:

html[lang=&quot;es-ES&quot;] #header_language_list ul li.es, html[lang=&quot;en-US&quot;] #header_language_list ul li.en{
 display:none;
}

Thanks for your explaination. I know of some people that have said they were a little unsure as to how it was done as well so I will point them this deirection.</description>
		<content:encoded><![CDATA[<p>Oh that helps a lot! I will definitely use that in my next website. For my current one I found a workaround. I simply used css to hide the language link that I am currently on. like so:</p>
<p>html[lang="es-ES"] #header_language_list ul li.es, html[lang="en-US"] #header_language_list ul li.en{<br />
 display:none;<br />
}</p>
<p>Thanks for your explaination. I know of some people that have said they were a little unsure as to how it was done as well so I will point them this deirection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-2384</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 17 May 2010 13:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-2384</guid>
		<description>Austin - the way the &lt;code&gt;wpml_language_switch()&lt;/code&gt; function works is like so:

I first return all the languages that have been configured for the blog:
&lt;code&gt;$lang = icl_get_languages(&#039;skip_missing=N&#039;);&lt;/code&gt;

Note: the parameter passed &quot;&lt;code&gt;skip_missing=N&lt;/code&gt;&quot; forces the function to return all languages - even if there is no content published for a given language on the site.

With the values (array) returned, I simply go through each of them and check a property called &quot;&lt;code&gt;active&lt;/code&gt;&quot;. Since I only want to return a list of languages that &lt;strong&gt;does not include&lt;/strong&gt; the one I am currently viewing the page in, I&#039;m checking to see if the &quot;&lt;code&gt;active&lt;/code&gt;&quot; properly is &quot;&lt;code&gt;false&lt;/code&gt;&quot;. If it is &quot;&lt;code&gt;false&lt;/code&gt;&quot;, the URL of the page in the currently language is appended to the &quot;&lt;code&gt;$ret&lt;/code&gt;&quot; variable.

Does that help? Let me know if you require further clarification.</description>
		<content:encoded><![CDATA[<p>Austin &#8211; the way the <code>wpml_language_switch()</code> function works is like so:</p>
<p>I first return all the languages that have been configured for the blog:<br />
<code>$lang = icl_get_languages('skip_missing=N');</code></p>
<p>Note: the parameter passed &#8220;<code>skip_missing=N</code>&#8221; forces the function to return all languages &#8211; even if there is no content published for a given language on the site.</p>
<p>With the values (array) returned, I simply go through each of them and check a property called &#8220;<code>active</code>&#8220;. Since I only want to return a list of languages that <strong>does not include</strong> the one I am currently viewing the page in, I&#8217;m checking to see if the &#8220;<code>active</code>&#8221; properly is &#8220;<code>false</code>&#8220;. If it is &#8220;<code>false</code>&#8220;, the URL of the page in the currently language is appended to the &#8220;<code>$ret</code>&#8221; variable.</p>
<p>Does that help? Let me know if you require further clarification.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Austin</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-2383</link>
		<dc:creator>Austin</dc:creator>
		<pubDate>Sat, 15 May 2010 06:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-2383</guid>
		<description>Hi, thanks for the great tutorial! Your explanation of your language toggle link is still a little unclear to me. Do you mind explaining that in more detail. I have been trying to implement that in my website but can&#039;t seem to figure it out. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the great tutorial! Your explanation of your language toggle link is still a little unclear to me. Do you mind explaining that in more detail. I have been trying to implement that in my website but can&#8217;t seem to figure it out. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitzie Perschbacher</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-2359</link>
		<dc:creator>Mitzie Perschbacher</dc:creator>
		<pubDate>Wed, 07 Apr 2010 11:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-2359</guid>
		<description>Hey, I am checking this site from my BB and it looks kinda funky. Thought you&#039;d want to know.</description>
		<content:encoded><![CDATA[<p>Hey, I am checking this site from my BB and it looks kinda funky. Thought you&#8217;d want to know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-2341</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 07 Jan 2010 18:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-2341</guid>
		<description>Patricia: Your welcome - WPML is definitely a real time-saver and is continually improving! For the life stream on the TeamCOPD site, this was done using a variety of RSS feeds that were captured in Yahoo! Pipes. From there it was just a matter of determine which feed (YouTube, Twitter, etc) was what. A fairly straight-forward process - especially using Pipes.</description>
		<content:encoded><![CDATA[<p>Patricia: Your welcome &#8211; WPML is definitely a real time-saver and is continually improving! For the life stream on the TeamCOPD site, this was done using a variety of RSS feeds that were captured in Yahoo! Pipes. From there it was just a matter of determine which feed (YouTube, Twitter, etc) was what. A fairly straight-forward process &#8211; especially using Pipes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patricia Martin</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-2339</link>
		<dc:creator>Patricia Martin</dc:creator>
		<pubDate>Sat, 02 Jan 2010 01:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-2339</guid>
		<description>Hi Mike!
Thanks for your review. I have been postponing making my site bilingual (Spanish/Portuguese) cause I never quite trusted any of the plugins availiable and thought running 2 separate sites was too much work. Now I feel that WPML could be the solution.

Off topic question: to put together a lifestream such as &quot;TeamCOPD community&quot; on the bottom left of the TeamCOPD a special plugin was used or it is just code?

Thanks

Patricia Martin</description>
		<content:encoded><![CDATA[<p>Hi Mike!<br />
Thanks for your review. I have been postponing making my site bilingual (Spanish/Portuguese) cause I never quite trusted any of the plugins availiable and thought running 2 separate sites was too much work. Now I feel that WPML could be the solution.</p>
<p>Off topic question: to put together a lifestream such as &#8220;TeamCOPD community&#8221; on the bottom left of the TeamCOPD a special plugin was used or it is just code?</p>
<p>Thanks</p>
<p>Patricia Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tuyen dung</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-2338</link>
		<dc:creator>tuyen dung</dc:creator>
		<pubDate>Thu, 31 Dec 2009 03:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-2338</guid>
		<description>Besides running multilingual, the site also uses WPML’s navigational elements. The breadcrumbs trail show visitors where they are and the context sensitive navigation helps concentrate on different sections of the site, showing other relevant pages.</description>
		<content:encoded><![CDATA[<p>Besides running multilingual, the site also uses WPML’s navigational elements. The breadcrumbs trail show visitors where they are and the context sensitive navigation helps concentrate on different sections of the site, showing other relevant pages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tutorial: Turning WordPress into a CMS using WPML &#124; Life @ iStudio &#124; WpMash - WordPress News</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-1842</link>
		<dc:creator>Tutorial: Turning WordPress into a CMS using WPML &#124; Life @ iStudio &#124; WpMash - WordPress News</dc:creator>
		<pubDate>Sun, 29 Nov 2009 03:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-1842</guid>
		<description>[...] View original post here: Tutorial: Turning WordPress into a CMS using WPML &#124; Life @ iStudio [...]</description>
		<content:encoded><![CDATA[<p>[...] View original post here: Tutorial: Turning WordPress into a CMS using WPML | Life @ iStudio [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Turning WordPress into a CMS using WPML &#124; Squico</title>
		<link>http://www.lifeathighroad.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/comment-page-1/#comment-1452</link>
		<dc:creator>Turning WordPress into a CMS using WPML &#124; Squico</dc:creator>
		<pubDate>Mon, 16 Nov 2009 11:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifeatistudio.com/web-development/tutorials/tutorial-turning-wordpress-into-a-cms-using-wpml/#comment-1452</guid>
		<description>[...] In: Wordpress plugins  16 Nov 2009         Go to Source [...]</description>
		<content:encoded><![CDATA[<p>[...] In: WordPress plugins  16 Nov 2009         Go to Source [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 10/23 queries in 0.006 seconds using disk

Served from: www.lifeathighroad.com @ 2010-09-07 20:14:37 -->