<?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: Creating a Multilingual CMSMS Site Using MleCMS Module</title>
	<atom:link href="http://blog.arvixe.com/creating-a-multilingual-cmsms-site-using-mlecms-module/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.arvixe.com/creating-a-multilingual-cmsms-site-using-mlecms-module/</link>
	<description>Detailed tutorials on how to use Arvixe services</description>
	<lastBuildDate>Mon, 20 May 2013 09:09:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Martin</title>
		<link>http://blog.arvixe.com/creating-a-multilingual-cmsms-site-using-mlecms-module/comment-page-1/#comment-91245</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Mon, 20 May 2013 09:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.arvixe.com/?p=9909#comment-91245</guid>
		<description><![CDATA[Thank a lot Goran!
Martin]]></description>
		<content:encoded><![CDATA[<p>Thank a lot Goran!<br />
Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack4ya</title>
		<link>http://blog.arvixe.com/creating-a-multilingual-cmsms-site-using-mlecms-module/comment-page-1/#comment-87912</link>
		<dc:creator>Jack4ya</dc:creator>
		<pubDate>Fri, 30 Nov 2012 16:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.arvixe.com/?p=9909#comment-87912</guid>
		<description><![CDATA[For search results I use


{foreach from=$results item=entry}
{if $entry-&gt;url&#124;replace:&#039;http://www.yourdomain.com/&#039;:&#039;&#039;&#124;truncate:5:&#039;&#039; == $languagesetting}
{$entry-&gt;title} - &lt;a&gt;url}&quot;&gt;{$entry-&gt;urltxt}&lt;/a&gt;
{/if}
{/foreach}


But it might be ugly filtering?

Btw: {$languagesetting} &gt;&gt; comes from {$cgsimple-&gt;get_root_alias() assign=&quot;languagesetting&quot;}

As the page structure is 
root
- en_US
 - - child
 - - and so on
- nl_NL
 - - child
 - - and so on]]></description>
		<content:encoded><![CDATA[<p>For search results I use</p>
<p>{foreach from=$results item=entry}<br />
{if $entry-&gt;url|replace:&#8217;http://www.yourdomain.com/&#8217;:&#8221;|truncate:5:&#8221; == $languagesetting}<br />
{$entry-&gt;title} &#8211; <a>url}&#8221;&gt;{$entry-&gt;urltxt}</a><br />
{/if}<br />
{/foreach}</p>
<p>But it might be ugly filtering?</p>
<p>Btw: {$languagesetting} &gt;&gt; comes from {$cgsimple-&gt;get_root_alias() assign=&#8221;languagesetting&#8221;}</p>
<p>As the page structure is<br />
root<br />
- en_US<br />
 &#8211; - child<br />
 &#8211; - and so on<br />
- nl_NL<br />
 &#8211; - child<br />
 &#8211; - and so on</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://blog.arvixe.com/creating-a-multilingual-cmsms-site-using-mlecms-module/comment-page-1/#comment-87877</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 26 Nov 2012 10:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.arvixe.com/?p=9909#comment-87877</guid>
		<description><![CDATA[Hi Goran!

You should add that you HAVE to install the corresponding language packs. Your example worked because the english language pack is default. If you want to set up e.g. a french version, you HAVE to install the CMSMS fr_FR language pack, otherwise the pages won&#039;t show.

Cheers,
Alex]]></description>
		<content:encoded><![CDATA[<p>Hi Goran!</p>
<p>You should add that you HAVE to install the corresponding language packs. Your example worked because the english language pack is default. If you want to set up e.g. a french version, you HAVE to install the CMSMS fr_FR language pack, otherwise the pages won&#8217;t show.</p>
<p>Cheers,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Cadwallader</title>
		<link>http://blog.arvixe.com/creating-a-multilingual-cmsms-site-using-mlecms-module/comment-page-1/#comment-86710</link>
		<dc:creator>Bill Cadwallader</dc:creator>
		<pubDate>Wed, 10 Oct 2012 16:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.arvixe.com/?p=9909#comment-86710</guid>
		<description><![CDATA[First off, thanks Goran!

The get_alias UDT referenced in the search section of this article doesn&#039;t work in 1.10.x and up, but there&#039;s a new version written by Goran at http://www.i-do-this.com/blog/58/Get-alias-from-a-page-URL

Here it is for reference:

/** Get page alias from url
* @params string $params[&#039;url&#039;]
*/

$gCms = cmsms();
$cntnt = cmsms()-&gt;GetContentOperations();

foreach ($cntnt-&gt;GetAllContent() as $page)
 {if ($page-&gt;GetURL() == $params[&#039;url&#039;]) {
   $return = $page-&gt;Alias();
   break;}}
if(!empty($params[&#039;assign&#039;])){
        $smarty = cmsms()-&gt;GetSmarty();
        $smarty-&gt;assign(trim($params[&#039;assign&#039;]), $return);
}
else
{
        return $return;
}]]></description>
		<content:encoded><![CDATA[<p>First off, thanks Goran!</p>
<p>The get_alias UDT referenced in the search section of this article doesn&#8217;t work in 1.10.x and up, but there&#8217;s a new version written by Goran at <a href="http://www.i-do-this.com/blog/58/Get-alias-from-a-page-URL" rel="nofollow">http://www.i-do-this.com/blog/58/Get-alias-from-a-page-URL</a></p>
<p>Here it is for reference:</p>
<p>/** Get page alias from url<br />
* @params string $params['url']<br />
*/</p>
<p>$gCms = cmsms();<br />
$cntnt = cmsms()-&gt;GetContentOperations();</p>
<p>foreach ($cntnt-&gt;GetAllContent() as $page)<br />
 {if ($page-&gt;GetURL() == $params['url']) {<br />
   $return = $page-&gt;Alias();<br />
   break;}}<br />
if(!empty($params['assign'])){<br />
        $smarty = cmsms()-&gt;GetSmarty();<br />
        $smarty-&gt;assign(trim($params['assign']), $return);<br />
}<br />
else<br />
{<br />
        return $return;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luuk van der Heijden</title>
		<link>http://blog.arvixe.com/creating-a-multilingual-cmsms-site-using-mlecms-module/comment-page-1/#comment-82196</link>
		<dc:creator>Luuk van der Heijden</dc:creator>
		<pubDate>Thu, 28 Jun 2012 10:09:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.arvixe.com/?p=9909#comment-82196</guid>
		<description><![CDATA[Hi Goran,

Thank you for this complete walkthrough!
I have everything working as I wanted, I only need to translate the content ;)
But that is not the question I wanted to ask.

Maybe you could check my site, www.cedexis.nl where you will see that the 4th tab of the menu is shows without layout.
It doesn&#039;t matter if I change the name, make a new page or change the order of the pages. Everytime the 4th tab is without layout.

This was not the case before I made my page multilang with this walkthrough!
Hopefully you can help?

With kind regards,
Luuk van der Heijden]]></description>
		<content:encoded><![CDATA[<p>Hi Goran,</p>
<p>Thank you for this complete walkthrough!<br />
I have everything working as I wanted, I only need to translate the content <img src='http://blog.arvixe.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
But that is not the question I wanted to ask.</p>
<p>Maybe you could check my site, <a href="http://www.cedexis.nl" rel="nofollow">http://www.cedexis.nl</a> where you will see that the 4th tab of the menu is shows without layout.<br />
It doesn&#8217;t matter if I change the name, make a new page or change the order of the pages. Everytime the 4th tab is without layout.</p>
<p>This was not the case before I made my page multilang with this walkthrough!<br />
Hopefully you can help?</p>
<p>With kind regards,<br />
Luuk van der Heijden</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 1/11 queries in 0.003 seconds using disk
Object Caching 346/347 objects using disk

 Served from: blog.arvixe.com @ 2013-05-20 10:10:05 by W3 Total Cache -->