Thanks !
I have translated your plugin to russian. How can I send it to you ?
It would be cool to make in the settings option to hide the progress, if the user is not logged in (because now, if user not logged in, he see that progress = 100% – that not true).
This doesn’t very important … but not very good.
So i solved this problem this way:
in file theme/bppp-member.php change first line
from
<div class="bppp-stat">
to
<div class="bppp-stat<?php global $bp; if ($bp->loggedin_user->id == '0') echo ' hide' ?>">
and add some code to my css:
.bppp-stat.hide {
display: none !important;
}