<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[PunBB Forums — usefull thing when u viewing profile]]></title>
		<link>https://punbb.informer.com/forums/topic/9105/usefull-thing-when-u-viewing-profile/</link>
		<atom:link href="https://punbb.informer.com/forums/feed/rss/topic/9105/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in usefull thing when u viewing profile.]]></description>
		<lastBuildDate>Sun, 16 Oct 2005 09:41:51 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: usefull thing when u viewing profile]]></title>
			<link>https://punbb.informer.com/forums/post/54385/#p54385</link>
			<description><![CDATA[<p>I replace! It works! Thanks! <img src="https://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /> </p><p>You can see it in action at <a href="http://www.powerofmetal.net/forum/profile.php?id=2">http://www.powerofmetal.net/forum/profile.php?id=2</a><br />I editted for Messaging section and Name and Location fields.</p><p>Only AOL IM shows and there&#039;s no Location!</p><p>Great!!</p>]]></description>
			<author><![CDATA[null@example.com (livatlantis)]]></author>
			<pubDate>Sun, 16 Oct 2005 09:41:51 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/54385/#p54385</guid>
		</item>
		<item>
			<title><![CDATA[Re: usefull thing when u viewing profile]]></title>
			<link>https://punbb.informer.com/forums/post/54377/#p54377</link>
			<description><![CDATA[<p>Right, thanks!</p><p>I&#039;ll use this! And post here if it doens&#039;t work out. I&#039;m not very good with PHP, lol <img src="https://punbb.informer.com/forums/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>Uh oh, do I add or replace? Currently, it&#039;s this:</p><div class="codebox"><pre><code>&lt;dt&gt;&lt;?php echo $lang_profile[&#039;Jabber&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo ($user[&#039;jabber&#039;] !=&#039;&#039;) ? pun_htmlspecialchars($user[&#039;jabber&#039;]) : $lang_profile[&#039;Unknown&#039;]; ?&gt;&lt;/dd&gt;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (livatlantis)]]></author>
			<pubDate>Sun, 16 Oct 2005 07:21:19 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/54377/#p54377</guid>
		</item>
		<item>
			<title><![CDATA[Re: usefull thing when u viewing profile]]></title>
			<link>https://punbb.informer.com/forums/post/54376/#p54376</link>
			<description><![CDATA[<p>It can be used not only for messengers, for user information in general<br />Open profile.php, find &lt;?php echo $lang_profile[&#039;Profile view&#039;] ?&gt;<br />Under, you could find all fields..<br />change everthing you want<br />for example,<br /></p><div class="codebox"><pre><code>&lt;dt&gt;&lt;?php echo $lang_profile[&#039;Login&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo pun_htmlspecialchars($user[&#039;username&#039;]) ?&gt;&lt;/dd&gt;
                        &lt;?php if($user[&#039;realname&#039;] != &#039;&#039;): ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Realname&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo pun_htmlspecialchars(($pun_config[&#039;o_censoring&#039;] == &#039;1&#039;) ? censor_words($user[&#039;realname&#039;]) : $user[&#039;realname&#039;]) ?&gt;&lt;/dd&gt;
                        &lt;?php endif;
                        if($user[&#039;last_visit&#039;] != &#039;0&#039;): ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Last online&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo format_time($user[&#039;last_visit&#039;]) ?&gt;&lt;/dd&gt;
                        &lt;?php endif;
                        if ($url != $lang_profile[&#039;Unknown&#039;]): ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Website&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo $url ?&gt; &lt;/dd&gt;
                        &lt;?php endif; ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Birthday&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo $birthday ?&gt;&lt;/dd&gt;
                        &lt;?php if($user[&#039;location&#039;] !=&#039;&#039;): ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Location&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo $user[&#039;location&#039;] ?&gt;&lt;/dd&gt;
                        &lt;?php endif; ?&gt;
                            &lt;?php if($user[&#039;workplace&#039;] !=&#039;&#039;): ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Work Place&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo $user[&#039;workplace&#039;] ?&gt;&lt;/dd&gt;
                        &lt;?php endif; ?&gt;
                        &lt;?php if($user[&#039;jabber&#039;] !=&#039;&#039;): ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Jabber&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo $user[&#039;jabber&#039;] ?&gt;&lt;/dd&gt;
                        &lt;?php endif; ?&gt;
                        &lt;?php if($user[&#039;icq&#039;] !=&#039;&#039;): ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;ICQ&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo $user[&#039;icq&#039;] ?&gt;&lt;/dd&gt;
                        &lt;?php endif; ?&gt;
                        &lt;?php if($user[&#039;locicq&#039;] !=&#039;&#039;): ?&gt;
                            &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Local ICQ&#039;] ?&gt;: &lt;/dt&gt;
                            &lt;dd&gt;&lt;?php echo $user[&#039;locicq&#039;] ?&gt;&lt;/dd&gt;
                        &lt;?php endif; ?&gt;
......</code></pre></div><p>etc...</p>]]></description>
			<author><![CDATA[null@example.com (seva)]]></author>
			<pubDate>Sun, 16 Oct 2005 07:15:28 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/54376/#p54376</guid>
		</item>
		<item>
			<title><![CDATA[Re: usefull thing when u viewing profile]]></title>
			<link>https://punbb.informer.com/forums/post/54368/#p54368</link>
			<description><![CDATA[<p>This makes sense. Where can I add these? And for other messengers?</p>]]></description>
			<author><![CDATA[null@example.com (livatlantis)]]></author>
			<pubDate>Sun, 16 Oct 2005 06:00:17 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/54368/#p54368</guid>
		</item>
		<item>
			<title><![CDATA[usefull thing when u viewing profile]]></title>
			<link>https://punbb.informer.com/forums/post/54250/#p54250</link>
			<description><![CDATA[<p>for what we can see empty fields ? for what these (Unknow) ? no usefull information<br />for example, if we add this to the code...<br /></p><div class="codebox"><pre><code>&lt;?php if($user[&#039;jabber&#039;] !=&#039;&#039;): ?&gt;
   &lt;dt&gt;&lt;?php echo $lang_profile[&#039;Jabber&#039;] ?&gt;:&lt;/dt&gt;
   &lt;dd&gt;&lt;?php echo $user[&#039;jabber&#039;] ?&gt;&lt;/dd&gt;
&lt;?php endif; ?&gt;</code></pre></div><p>... when we&#039;ll view users profiles, there will be no empty fields..</p><p>p.s.<br />i&#039;m newbie here, don&#039;t bit me %))</p>]]></description>
			<author><![CDATA[null@example.com (seva)]]></author>
			<pubDate>Thu, 13 Oct 2005 18:01:50 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/54250/#p54250</guid>
		</item>
	</channel>
</rss>
