Hi,
when I am in other Boards (which use other Software), most of the times, the location of the User is shown below the Avatar. I like this and want to have it shown in my SMF too.
Does anybody know how I can show the location there?
_octo_
In: Themes/default/Display.template.php
and any other theme that has their own custom Display template
Find: if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
Before that, add: echo ' <b>Location:</b> ', $message['member']['location'], ' <br /> ';
Hey cool,
thanx for the help.
Workes just fine.
_octo_
dosent seem to work in rc2 :(
echo '
</td><td width="100%" class="smalltext" valign="top" align="center" style="padding: 18px 2px 10px 2px;">';
if (!$message['member']['is_guest'])
{
// Show their personal text?
echo ' <b>Location:</b> ', $message['member']['location'], ' <br /> ';
if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
echo '
', $message['member']['blurb'], '
';
}