Search Results for 'profile fields'
-
Search Results
-
I have a plugin for LDAP/AD integration on my site that maps to the user’s buddypress profile fields including profile picture. The profile picture shows up on the profile page, directory, forum. It even shows up on the membership list in groups. However, it doesn’t show up for the administrators of the group listed above the group name or on the invite page. We are using the Woffice theme, which buddypress is integrated with. Any suggestions are greatly appreciated.
Topic: Each member’s home page
Hi all,
Each member’s home page is currently empty at “siteurl/members/namemember” and the fields entered by users appear on their profile page at “siteurl/members/namemember/profile”
I do not understand what this home page member is useful for ? Because currently this members home page does not provide any information, so I try not to display it …Perhaps other informations or fields should appear on each member’s home page when Buddy Press is used more fully?
Thanks 🙂I am relatively new to using BuddyPress but have spent a lot of time trying to find an answer to my question and I am at a total loss.
I have created several xProfile fields under Users > Profile Fields but none of them display on the WP User profile (Admin Dashboard > Users > Edit or user-edit.php) for any given user.
Fields:
Name, Profession, Phone, Email, Address, Date of Birth, Emergency Contact Name, Emergency Contact PhoneIdeally these fields would be displayed on the WP User profile with a header such as Personal Information.
I’m working on Educational community website, where students will create their accounts. In that registration form I want to Include their current location, College, Current city, Year of passing and so on. But I just want to add smart fields when they register.
For example:
If while registration, a student click on the field called ‘College’, he will add its name manually :
some will type : ” St.xavier’s college “
some will only type: ” St.xavier’s “
I dont want that case.So i want to make it like if student type just “St. ” he will get list of colleges in dropdown starting with ‘St.’. something like facebook profile fields.
I hope you are getting me !!!
Hi,
I am using this code to pull social links from xprofile fields into the users profile header:
function bpfr_socialize_profile () {
echo '<br>'; // don't remove !
if ( $data = bp_get_profile_field_data( 'field=Twitter ' ) ) :
?>/" target="_blank" title="Twitter"><i class="icon-twitter"> </i>Test Twitter
<?php endif;
I am looking to do the same but with custom urls. So for instance if they type in Buddypress.org, that text will appear in the header and link to the website. I am no coder and with a few tweaks of above code, I can get it to show the url, but only with the text that I choose myself displayed in </i>Test Twitter. I want the text which the user types in to appear. I have searched some tutorials and tried a few different options but nothing works, I wish I could code! 😀 Hopefully this is easy enough. Can anyone help?
EDIT: If its easy enough, I would prefer the text to show in a form of a button, but text will do for now.
Thanks in advance.
Chuck.
Is it possible to create various groups of one-to-many connections? It seems Users can only create one set of connections (“friends”) or member groups that are many-to-many groups where everyone joins a single conversation. Can I create additional one-to-many groups, for example “friends”, “family”, “colleageus”, etc.? Ideally the user could then limit visibility of profile fields based on these groups, i.e. some fields would be visibile to “friends” connections, others visible to “family” connections, etc.
Likewise, in the scenario above, could each user individually select which one-to-many group to put other members into? For example, User A may consider User B in their “family” group of connections, thereby providing User B with visibility to profile fields they have selected for visibility to “family”. User B may consider User A in their “friend” group of connections, thereby providing User A with corresponding profile visibility.
Thanks for your help!
Okay, I have learned to use code to show profile fields on different parts of the page. But I was wondering if it were possible to show or hide one field based on whether the profile member and the member viewing the profile were a match in another field.
For example, could I:
show the field favorite color if a man is viewing a woman’s profile or a woman is viewing a man’s profile – but – hide the field favorite color if a man is viewing a man’s profile or a woman is viewing a woman’s profile?
By the way, thanks for the support forum. It’s been a lot of help.
I built a website for a client where we needed to collect some additional information on registration from users that would ultimately be used in their profiles (it’s pretty much a social media platform for local artists).
I have it so that when someone sign ups a notification email goes to my client so he can make sure they are a legit artist to keep them on the site. The notification email just has the default info in it.
Is there any way to include the additional extended profile data in the notification email?
Wordpress 5.4.1
Buddypress 6.0Hi,
I’m using last version of buddypress with profile fields, I have two issues :
1) i get in profil page phone as html not text like that :
Phone<a href="tel://06666666669" rel="nofollow">0666666666</a>
2) how can i validate phone number in registration page? i used jQuery to do that but does not work, this is my code jQuery:jQuery(document).ready(function(){ //Code Starts function validatePhone(field_49) { var a = document.getElementById(field_49).value; var filter = /^[0-9-+]+$/; if (filter.test(a)) { return true; } else { return false; } } //Code Ends //Code Starts jQuery('#field_49').blur(function(e) { if (validatePhone('field_49')) { $('#field_132').html('Valid'); $('#field_132').css('color', 'green'); } else { $('#field_132').html('Invalid'); $('#field_132').css('color', 'red'); } }); //Code Ends });Thnak you
I had been using this code to show profile fields on a member’s card in the directory. It was working perfectly until the last BuddyPress update. After the update it disappeared. (even with all other plugins disabled and on the Twenty-Twenty theme)
Is there a fix for this or should I change something in my code?
function add_city_to_members_loop() {
$field_content = bp_get_member_profile_data( ‘field=City’ );
if( $field_content != false )
echo ” – ” . $field_content;
}
add_action( ‘bp_directory_members_item’, ‘add_city_to_members_loop’ );Topic: Register link in Login page
Hi. Register link in Login Page doesn’t direct to the same Register Page with the Profile Fields. How can I make the register page redirect to the same page with the same items?
Topic: Profile Fields Display
Profile Fields not displaying My issue
Hello all.
I’ve been searching for this for a couple of weeks now and haven’t found a solution.
I have groups set up on my site, and each member should be part of only one group. It’s a directory with different “chapters (aka groups)” of members.
On the site, I have an admin for each group.
I want to be able to allow that admin to edit only the users in their group and no other members on the site (regardless of role) when they are in the WP Dashboard/or front end of the site logged in. This includes editing their xProfile information the same way site admins can.
Is there a way to make this happen? This site has nearly 50 chapters, and I don’t want an Admin from GroupA to be able to edit members’ info in GroupB.
(Not looking for admins to be able to edit the group information. But to edit the user’s information like email address, avatar, and other xProfile fields).