Thread Starter
R J
(@r-j-1)
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;
}
Thread Starter
R J
(@r-j-1)
It’s seems like my russian translation not work with new version …
Thanks for the feedback, it has been fixed (without the need of CSS rules) in 0.3.0.
You can send me your translation to [email protected].
PS : the .po file has been updated in 0.3.0.
RJ you need to make this change in line 118 for buddypress-profile-progression.php
//load_plugin_textdomain($this->prefix, FALSE, $this->plugin_dir.'/languages/');
load_plugin_textdomain( $this->prefix, false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
Thread Starter
R J
(@r-j-1)
grosbouff,
thanks. I send your russian translation of new version.
But your just fix problem with translation.
No fixing of this problem:
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).
Yes, now in setting I can enable progress bar only on profile edit page.
I tell about situation, when no user logged in – we always see 100% progress (actually it can be 10%, 20%, …) – this is not true, and this is not good.