Forum Replies Created
-
Author
-
Leap-itParticipant
your welcome dont forget to go to settings/buddypress then click on the settings tab and chose No auto embed (this will hide the horizontal bar)
Leap-itParticipanthi try this
install the plugin Buddypress Xprofile Custom Fields Typethen in the user fields you can chose a new field type birthdate
there is an option to display age insteadhope this helps
Leap-itParticipantim no pro but here goes
1. install plugin profil progression as mentioned above.
2. go to plugin – installed plugins – BuddyPress Profile Progression
3. modify the file “buddypress-profile-progression/theme/bppp-member.php”
4 replace the entire contents with the following code.
<div class="circular-item" , 'kleo_framework').'">
<small class="icon strong">Profil</small>
<input type="text" value="<?php echo (int)(bppp_get_user_progression_percent());?>" class="greenCircle">
<span class="user"></span>
</div>
5. add the following code to functions.php
add_action('kleo_bp_before_profile_name', 'my_prog_bar', 11);
function my_prog_bar() {
if (function_exists('bppp_progression_block') AND bp_is_my_profile()) {bppp_progression_block();
}
}i also created an image file called user_bg_png to replace the hearts image as in the match progress.
if you do so then add the following to assets/styles/app.css
.circular-item .user { background: url(../images/user_bg.png) no-repeat; display: block; width: 39px; height: 30px; position: absolute; right: 0; top: -20px; }iff not just remove the
class="user"
in the file “buddypress-profile-progression/theme/bppp-member.php” modified earlierhope this works for you
Leap-itParticipantis there a way to use the circulair progress bar for the theme (profile match) instead of the linier bar ?
thanks
and great work by the way
-
AuthorPosts