Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 3,901 through 3,925 (of 5,698 total)
  • Author
    Search Results
  • #25000
    #122507
    Knight Fight
    Participant

    I was having similar problems, slow to load and lots of resources. The problems seemed to dissapear when I removed a lot of the profile fields.

    #24990
    design1
    Member

    Hi everybody,

    I would like to know if it is possible to have upload fields on the backend profile to upload tracks.

    Regards

    #122478

    I tried xprofile_get_field_data() but it didn’t work, maybe I’m just too dumb.. :)

    So I tried it using MySQL, here is my function wp_new_user_notification, I edit wp-includes/pluggable.php

    function wp_new_user_notification($user_id, $plaintext_pass = ”) {
    $user = new WP_User($user_id);

    $user_login = stripslashes($user->user_login);
    $user_email = stripslashes($user->user_email);
    $buddypress_fields = $user_id;

    // The blogname option is escaped with esc_html on the way into the database in sanitize_option
    // we want to reverse this for the plain text arena of emails.
    $blogname = wp_specialchars_decode(get_option(‘blogname’), ENT_QUOTES);

    $message = sprintf(__(‘New user registration on your site %s:’), $blogname) . “rnrn”;
    $message .= sprintf(__(‘Username: %s’), $user_login) . “rnrn”;
    $message .= sprintf(__(‘E-mail: %s’), $user_email) . “rnrn”;

    // Add Custom Fields from buddypress table to admin email – Start

    $buddypress_result_ = mysql_query(“SELECT
    wp_bp_xprofile_fields.name,
    wp_bp_xprofile_data.value
    FROM wp_bp_xprofile_fields, wp_bp_xprofile_data
    WHERE
    wp_bp_xprofile_data.user_id = $user_id
    AND
    wp_bp_xprofile_fields.id = wp_bp_xprofile_data.field_id
    ORDER BY
    wp_bp_xprofile_data.field_id”);

    while($buddypress_row = mysql_fetch_array($buddypress_result_))
    {
    $fields = $buddypress_row;
    $fields_value = $buddypress_row;
    $message .= $fields . “: rn”;
    $message .= $fields_value . “rnrn”;
    }

    // Add Custom Fields from buddypress table to admin email – End

    @wp_mail(get_option(‘admin_email’), sprintf(__(‘[%s] New User Registration’), $blogname), $message);

    if ( empty($plaintext_pass) )
    return;

    $message = sprintf(__(‘Username: %s’), $user_login) . “rn”;
    $message .= sprintf(__(‘Password: %s’), $plaintext_pass) . “rn”;
    $message .= wp_login_url() . “rn”;

    wp_mail($user_email, sprintf(__(‘[%s] Your username and password’), $blogname), $message);

    }

    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 all,
    I created a profile field named practice area (example practices area : criminal law ) but it is not a group (criminal law) its an argument when i pass criminal law to the groups page it listed all the members of the group i need only members who’s in practices area : criminal law how can i get value or filter the members of the group

    #122364
    N3k0
    Participant

    Excelent… thats works fine, is i was looking for :D thansk a lot… online a cuestion, how i can display correctly date fields @enailor ???

    #122105
    triznic
    Participant

    Anybody? I downloaded and installed this last one but the fields dont match up and the user name is missing to edit from. This is a MUST have!!!

    #122104
    Quint
    Participant

    @kirkslater, nice idea! I hope you don’t mind me piggy backing off your post but your idea brought a related one to mind.

    @sbrajesh, thanks for planting the seed. Is the following possible? Whether viewing the group or member directory, could the div for the list item; that is the row that contains the group or member, be made into a link that on hover, activates a tool tip that contains group or member profile data? And I’m not referring to hover over the existing member name link; since, in my opinion, this would require the user aim their cursor at a small defined space rather than the “acreage” a row represents.

    The purpose behind the request is “context”. When looking at a list of members or groups, having the user click on the link for them to find out the details behind the member or group is wasteful and time-consuming. This is why kirkslater’s idea is so intriguing.

    #122040
    juanmaguerrero
    Participant

    Surprisingly and bizarrely I was able to solve this. I went to the admin panel, to xprofile fields section and changed the names back to the original “Base” and “Name” labels. Then saved changes. I found that way it worked again normally, all info that I changed editing the user’s profile were saved ok. Then I changed the labels again in the admin panel, to “Información principal” and “Nombre completo” and all kept working fine as if that bizarre bug never happend.

    Well, that’s all, thanks!

    #121849
    Brajesh Singh
    Participant

    @kirkslater,
    you are most welcome. Checking that thread in a minute :)

    #121836
    kirkslater
    Participant

    @sbrajesh worked perfectly many thanks

    Could I be a pain and ask you to take a look over this issue as well? If not, no worries ;)

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/display-age-on-profile-page/

    mrjarbenne
    Participant

    I know this seems like an unintuitive hack (why would you want to do this?), but I’m currently using an Active Directory Sync Plugin to facilitate my users logging in. The plugin works fine in WordPress: disabling the password reset from within the Dashboard Profile and from the Forgot Password link on the login page. For security reasons, my workplace wants to keep password reset functionality confined to their internal system, ie: they don’t want WordPress to talk back to the LDAP to enable password resets, just to authenticate users.

    BUT: The plugin doesn’t take Buddypress into account (and the developer has fallen off the edge of the world) so users can still “sorta” change their password from their buddypress profile (I won’t get into what’s happening when they do).

    All of that to ask: Is there a way I can get rid of those two Change Password fields on the Frontend Buddypress Profile page. I’m hoping for a little CSS magic for my child theme, or a function that I can throw in functions.php or bp-custom.php, but I’m completely stumped.

    kirkslater
    Participant

    Hi

    On the list of users I have as members on a group, is there a way to retrieve xprofile fields and display them? So that I can have there location next to their name?

    I use the following in the members loop but it doesn’t work on the groups page:

    `

    `

    Any ideas?

    #121539
    landwire
    Participant

    I can still see a problem in making this whole thing dynamic. I.e: have seperate loops for lets say ‘students’, ‘academics’ and ‘staff’. Would that be possible to implement? Basically the values that are passed to inclide_by_meta would have to change according to which name/value/role I want to filter by. That is a bit over my head, as I’m not a coder. Any help is appreciated!

    #121538
    landwire
    Participant

    Hi there,
    how does your code behave in BP 1.5? I am trying to filter members by user role and used the following code:
    `

    <?php
    $user_role = array (
    ‘role’ => ‘author’,
    );

    $all_authors = get_users ($user_role);

    $members_to_be_included = array ();
    foreach ($all_authors as $all_author) {
    $members_to_be_included[] = $all_author->ID;
    }
    ?>

    `

    The problem I run into though is that when I use the filter members by ‘active’, ‘alphabetical’ etc. those filters would not work anymore. Do they work with your code? Will definitely try this out!

    #121492
    juanmaguerrero
    Participant

    PS: my profile fields are changed to spanish names/labels. ie: “Full name” is “Nombre Completo” and so on… thanks

    #121491
    juanmaguerrero
    Participant

    @boonegorges yes, please forgive me. I’m using BP 1.5 (the “definitive” version) and the last version of WordPress. Here’s the thing:

    After editing the profile fields of a user and hitting the “save” button, an error shows telling that there was an error while saving the changes and if the fullname of the user was changed, it shows the username insted of the previous one.

    (i.e: I set my fullname to “Boone Gorges” and hit “save”. Then the fullname field shows the value of “boongorges”).

    Now checking my Database I see in “wp_users” -> boongorges I see that this fields and values… (among others):

    || user_login || boongorges
    || user_nicename || boongorges
    || user_url || (empty)
    || display_name || (empty)

    This was fixed on https://buddypress.trac.wordpress.org/changeset/4939 but that worked on BP 1.5 beta 2 but now with the release of “Lombardi” it got back to the same problem.

    Thanks for your help, very much

    #121354
    kenrichman
    Participant

    I am disappointed that BuddyPress does not simply use and extend the WP profile fields. It complicates things.
    And synching profiles with mailchimp plug-ins is now more complex – ok it doesn’t work – for me anyway.
    BuddyPress is a WP plug-in, not a standalone system so it should plug in to WP, including profiles. Bp says it offers extended profiles, not different profiles.
    Incidentally my users want Last name, First name, just to complicate things further.

    #121289
    Jon Henwood
    Participant

    Hi

    Just what I am looking for I think. So if I understand right I create user profile fields for Facebook, twitter and linkedin and instead of displaying the user entered link it will display the icons for each.

    Next question where do and in which file do I place the suggested code?

    thanks

    #121266
    modemlooper
    Moderator

    Safari browser can use the gps API on an iPhone, I’m not sure about Android. You could create code that attaches user meta to a logged in user and save the gps coordinates then filter members list by distance.

    There are a couple location plugins but those are address based in which you enter address into profile fields. They do not update your current info.

    So yes it’s doable but no plugin currently exists.

    #121250
    Tammie Lister
    Moderator

    BuddyPress has it’s own integrated with WordPress users – you can add profile fields and have other control things. In theory they are the same but with additions.

    Yes, if you want to maximise what the site does getting a theme designed from the start for BuddyPress is a good step. But, with the template pack as said you don’t have to do that.

    #121211

    I am using gravity forms to fetch the directory data from user . The fields in gravity form are mapped with the custom fields of custom post type ‘listing’ ,the one i mentioned above. Therefore when the user fill the gravity form , it will dynamically create a post .Now i need to list this post in user’s profile.Sorry if i am not clear .To put it shortly, I need to display a custom post in user’s profile.

    #121198
    ARHistoryHub
    Participant

    I’m having this same issue as well, sort of. I upgraded my production site to 1.5, since all worked well with my test installation. Upon upgrade, all Full Name fields were replaced with the data from the usernames field. So, usernames are displayed in place of the Full Name in the member header as well as the profile section. Only after reading jorge’s issues did I attempt to change the field names.

    What’s odd is that in the activity stream, new entries retain the Full Name while replies to entries display the username – even when a user is replying to their own activity. I’ve tried rolling back to 1.2.10 – just the buddypress plugin itself, not the whole database – but the problem persists. Any ideas devs? @boonebgorges @djpaul

    #24513
    Mary Jane
    Member

    How can I make it so when someone updates there hometown it would be like John has updated his hometown to coco-land or john is in a relationship-(custom fields )

Viewing 25 results - 3,901 through 3,925 (of 5,698 total)
Skip to toolbar