@aboutm2
Active 1 month, 2 weeks ago
-
Mohammad Imran replied to the topic Remove @username from profile url in the forum Installing BuddyPress 4 months, 4 weeks ago
@aboutm2 please paste this code snippet and check it as per your requirement.
[Read more]
// Hide user name from BuddyPress profile
function hide_user_name_from_profile() {
if ( bp_is_active('xprofile') ) {
?>
<style>
.user-nicename{
display:none;
}
</style>
<?php
}
}
add_action( 'wp',…