<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Display problem: tags beginning with a Turkish character</title>
		<link>http://www.themolitor.com/forums/topic/display-problem-tags-beginning-with-a-turkish-character</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Display problem: tags beginning with a Turkish character</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 15:45:05 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/display-problem-tags-beginning-with-a-turkish-character" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Display problem: tags beginning with a Turkish character"</title>
			<link>http://www.themolitor.com/forums/topic/display-problem-tags-beginning-with-a-turkish-character#post-33523</link>
			<pubDate>Mon, 16 Mar 2015 09:49:41 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">33523@http://www.themolitor.com/forums/</guid>
			<description><p>:-)
</p></description>
		</item>
		<item>
			<title>suburian on "Display problem: tags beginning with a Turkish character"</title>
			<link>http://www.themolitor.com/forums/topic/display-problem-tags-beginning-with-a-turkish-character#post-33508</link>
			<pubDate>Sun, 15 Mar 2015 06:07:37 +0000</pubDate>
			<dc:creator>suburian</dc:creator>
			<guid isPermaLink="false">33508@http://www.themolitor.com/forums/</guid>
			<description><p>Thank you very much NeutralizeR your trick helped me a lot!!!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Display problem: tags beginning with a Turkish character"</title>
			<link>http://www.themolitor.com/forums/topic/display-problem-tags-beginning-with-a-turkish-character#post-20763</link>
			<pubDate>Tue, 14 May 2013 10:14:28 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">20763@http://www.themolitor.com/forums/</guid>
			<description><p>Awesome! Thanks for posting your findings and solution :-)</p>
<p>Glad you're enjoying the theme too ;-)</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>NeutralizeR on "Display problem: tags beginning with a Turkish character"</title>
			<link>http://www.themolitor.com/forums/topic/display-problem-tags-beginning-with-a-turkish-character#post-20752</link>
			<pubDate>Mon, 13 May 2013 11:23:13 +0000</pubDate>
			<dc:creator>NeutralizeR</dc:creator>
			<guid isPermaLink="false">20752@http://www.themolitor.com/forums/</guid>
			<description><p>After a little research, i found the solution:</p>
<p>----------------------------------<br />
$userData['name'][0]</p>
<p>Offsets in strings can be accessed like arrays. Be aware that this assumes your strings are in a single byte encoding. If you have multi-byte encoded strings, you need:</p>
<p>mb_substr($userData['name'], 0, 1, 'UTF-8' /* (the correct encoding) */)</p>
<p><a href="http://stackoverflow.com/questions/13858706/split-the-first-letter-from-variable" rel="nofollow">http://stackoverflow.com/questions/13858706/split-the-first-letter-from-variable</a></p>
<p>----------------------------------</p>
<p>I replaced $tag-&#62;name[0] in t-tags.php with mb_substr($tag-&#62;name, 0, 1, 'UTF-8')</p>
<p>It fixed the display problem.</p>
<p>Then i wanted to separate ö,ü,ç,ş,ı,ğ and o,u,c,s,i,g listings...so my final code is now:</p>
<pre><code>$first_letter = strtoupper (str_replace(array (&#039;ı&#039;, &#039;i&#039;, &#039;ğ&#039;, &#039;ü&#039;, &#039;ş&#039;, &#039;ö&#039;, &#039;ç&#039; ),array (&#039;I&#039;, &#039;İ&#039;, &#039;Ğ&#039;, &#039;Ü&#039;, &#039;Ş&#039;, &#039;Ö&#039;, &#039;Ç&#039; ), mb_substr($tag-&#62;name, 0, 1, &#039;UTF-8&#039;) ));</code></pre>
<p>Great theme btw! It makes me want to write :)
</p></description>
		</item>
		<item>
			<title>NeutralizeR on "Display problem: tags beginning with a Turkish character"</title>
			<link>http://www.themolitor.com/forums/topic/display-problem-tags-beginning-with-a-turkish-character#post-20743</link>
			<pubDate>Mon, 13 May 2013 10:07:32 +0000</pubDate>
			<dc:creator>NeutralizeR</dc:creator>
			<guid isPermaLink="false">20743@http://www.themolitor.com/forums/</guid>
			<description><p>These are the problematic characters: "ö,ü,ç,ş,ı,ğ"</p>
<p>What do you suggest, entering the ascii code instead of "ö" for the word "ölüm" each time i add a tag? :)</p>
<p>Well, i did and now the index page lists "ölüm" under "&#38;" instead of "�".</p>
<p>I found a discussion here but it does not provide a solution for me: <a href="http://wordpress.org/support/topic/a-z-index-list-of-tags" rel="nofollow">http://wordpress.org/support/topic/a-z-index-list-of-tags</a></p>
<p>Obviously, this is an encoding problem. Everything seems to set to UTF-8 on my side and those characters listed above are displayed without any problems expect the index page.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Display problem: tags beginning with a Turkish character"</title>
			<link>http://www.themolitor.com/forums/topic/display-problem-tags-beginning-with-a-turkish-character#post-20740</link>
			<pubDate>Mon, 13 May 2013 09:44:57 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">20740@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I'm not aware of a theme fix for this as it has to do with that particular character and how the browser renders it. </p>
<p>Have you tried using the HTML code for that character? <a href="http://www.ascii.cl/htmlcodes.htm" rel="nofollow">http://www.ascii.cl/htmlcodes.htm</a></p>
<p>Let me know.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>NeutralizeR on "Display problem: tags beginning with a Turkish character"</title>
			<link>http://www.themolitor.com/forums/topic/display-problem-tags-beginning-with-a-turkish-character#post-20724</link>
			<pubDate>Mon, 13 May 2013 08:03:06 +0000</pubDate>
			<dc:creator>NeutralizeR</dc:creator>
			<guid isPermaLink="false">20724@http://www.themolitor.com/forums/</guid>
			<description><p>Hello,</p>
<p>On the index page, tags beginning with a Turkish character do not display properly.</p>
<p>The uppercase letter is displayed as "�"</p>
<p>Screenshot: <a href="http://img836.imageshack.us/img836/9246/tagproblem.gif" rel="nofollow">http://img836.imageshack.us/img836/9246/tagproblem.gif</a></p>
<p>I belive it must be fixed in t-tags.php file.</p>
<p>Murat
</p></description>
		</item>

	</channel>
</rss>
