Re: One profile page to rule them all
oppss.. i think this works 9to show topis started by the user) to be shown in bp profile:
<h2>Latest Topics Started in Forum</h2>
<ul>
<?php
$query="SELECT * FROM bb_topics WHERE topic_status=0 AND topic_poster=$current_displayed_user ORDER BY topic_time DESC LIMIT 10";
$results=$wpdb->get_results($query);
foreach ($results as $result) {
echo "
<li><a>topic_id."'>".$result->topic_title."</a></li>
";
}
?>
</ul>