Viewing 1 replies (of 1 total)
  • Thread Starter phaseonedesign

    (@phaseonedesign)

    Nevermind I got it!! for anyone how wants to put the user Rank into the leaderboard just put this into your fuctions.php.

    Thanks lot anyway.

    add_filter( 'mycred_ranking_row', 'my_custom_ranking_rows', 10, 4 );
    function my_custom_ranking_rows( $layout, $template, $row, $position )
    {
    	$rank_name = mycred_get_users_rank( $user_id );
    	return str_replace( '%rank%', $rank_name, $content );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Adding user Rank to leaderbord’ is closed to new replies.