Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3646

Reply To: User’s replies / topics outside the profile page

$
0
0

I suspect that it doesn’t know which user you want displayed

untested but try this

<?php 
$current_user_id = (int) bbp_get_current_user_id();

$topics = bbp_get_user_topic_count_raw($current_user_id);
 $replies = bbp_get_user_reply_count_raw($current_user_id);

$totalTopics = $topics * 5;
 $totalsReplies = $replies * 2;

$points = $totalTopics + $totalsReplies;

echo " points = $points.";

?>

Viewing all articles
Browse latest Browse all 3646

Trending Articles