[Plugin: CubePoints] Displaying Cubepoints Rank in comments section
-
Hello all,
I’m trying to figure out how to display the Cubepoints ranks into my comment section. I essentially want it to display the rank of each commenter on the site.
Currently I’m using the following code to display points (hope this is helpful for anyone looking for that):
<center><?php $user = get_userdata($comment->user_id); if(function_exists(‘cp_displayPoints’) && $user->ID){
echo ‘Points: [‘;
cp_displayPoints($user->ID);
echo ‘]’;
}
?></center>I’m wondering if anyone could help me with this.
Thanks!
- The topic ‘[Plugin: CubePoints] Displaying Cubepoints Rank in comments section’ is closed to new replies.