- 
	
	Mohammad Imran replied to the topic Remove @username from profile url in the forum Installing BuddyPress 1 year, 3 months ago @aboutm2 please paste this code snippet and check it as per your requirement. 
 
 // 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',…
- 
	
	Mohammad Imran replied to the topic How to change the text of these three submenu texts on groups page? in the forum How-to & Troubleshooting 1 year, 4 months ago @neighborhoodnurturers0 These strings will be translated with the help of Loco Translation plugin. 
 https://prnt.sc/DXGWPwAhVAIm
- 
	
	Mohammad Imran replied to the topic If current user is seeing another user profile then we have to remove setting in the forum Ideas 1 year, 4 months ago The settings tab is also not visible if the user is viewing another user’s profile. This is the default functionality in BuddyPress. 
 https://prnt.sc/UKnd4pO7_sjY
- 
	
	Mohammad Imran replied to the topic Display portion of user bio in membership directory in the forum How-to & Troubleshooting 1 year, 4 months ago @stephunique with the help of this code snippet, you can display the user bio on member directory. /** 
 * User Bio on member directory.
 *
 * @return void
 */
 function display_user_bio_on_member_directory() {
 if ( ! bp_is_members_directory() ) {
 return;
 }
 global $members_template;
 $member_id = $members_template->member->id;
 $bio =…[Read more]
- 
	
	Mohammad Imran replied to the topic Fatal error in the forum Installing BuddyPress 1 year, 4 months ago @serranospc Please paste the error log that are help which type of issue you are facing and it is also help how to replicate the issue. 
- 
	
	Mohammad Imran replied to the topic XProfile Custom Field Types in the forum How-to & Troubleshooting 1 year, 8 months ago 
- 
	
	Mohammad Imran replied to the topic Redirect after registration in the forum How-to & Troubleshooting 1 year, 8 months ago function redirect_after_registration() { 
 return home_url( ‘/your-page-name’ ); // Replace ‘/your-page-name’ with the URL of the page you want to redirect users to.
 }
 add_filter( ‘registration_redirect’, ‘redirect_after_registration’ );
	@imranmd
	Active 3 months, 3 weeks ago