Is there a way to show members location next to their postings?
Show location next to postings
(11 posts) Great offers for webmaster, blogger and web developer!-
Posted 2 months ago #
-
Do you mean GEO Locations or just some text?
Posted 2 months ago # -
The location people fill in when they register. So it should be come from their profile.
Ideally the location is only displayed when the location field is filled in, else not.Posted 2 months ago # -
Ooh I see, there is no standard function for, you need some small plugin/function to pull this data from the database.
Posted 2 months ago # -
Could you please give some hints how to accomplish this?
Posted 2 months ago # -
Quote from: fl00r
"Could you please give some hints how to accomplish this?"There is no easy way you need to write some PHP function. Do you need this so much to "invest" so much in this function?
Posted 2 months ago # -
In all my ignorance I thought this was rather easy to accomplish since the location is displayed on the members profile page by default.
Posted 2 months ago # -
Okay, clear.
Thanks anyway!
Posted 2 months ago # -
Just an update: I managed to get the location of the member next to the posting area by adding below code into post.php
<?php $puser = bb_get_user( get_post_author_id() ); if ( isset( $puser->from ) ) { echo $puser->from; } ?>Posted 2 months ago #
Reply »
You must log in to post.