MyBB Community Forums

Full Version: How to show posters location?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can you have the location of the poster to show on the post under the posts count( or around there) in the upper right hand corner. I cant find it.

Thanks

[attachment=30356]
you can follow guidance from this --> Adding gender and other things to the postbit
(in general, location field id is 1)
Thanks m again bit I am having trouble getting the location BELOW the posts count

[attachment=30357]

This is what I have

{$lang->postbit_posts} {$post['postnum']}
        {$post['fid1']}
	{$lang->postbit_joined} {$post['userregdate']}
	{$post['replink']}{$post['warninglevel']}
^ you can put a break line code <br /> after {$post['postnum']} (like below)
{$lang->postbit_posts}{$post['postnum']}<br />
<strong>Location:</strong> {$post['fid1']}<br />
{$lang->postbit_joined} {$post['userregdate']}
{$post['replink']}{$post['warninglevel']} 
Thanks m. That works I had to switch the location to the top because it would leave a gap between "posts" and "joined date" if there was no location to show

Thanks again!
Kurt