Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 4,751 through 4,775 (of 5,698 total)
  • Author
    Search Results
  • #75510
    Mark
    Participant

    I kind of figured there was slim chance that I was the only person to ever encounter this and wonder about it… in fact I should have looked on trac first before I posted, because I just discovered xprofile_sync_wp_profile() and ticket #2315. I’m going to have to look closer at it when I get time because this seems to be exactly what I’m referring to.

    #75508
    gaysurfers
    Participant

    Same here!
    I have installed it, copied the form to members/index.php
    All it did was create a submit button + “by name” next to search
    Wasn’t it supposed to add filters with my x-profile fields to filter the search?

    #75491
    Scotm
    Participant

    This is a longstanding issue with WP/WPMU/BP. I’m not sure why in 3.0 the existing profile page wasn’t discontinued in favour of something that doesn’t require access to admin and that would be trumped if a BP install was present.

    #11003
    Mark
    Participant

    While working on the registration page for a new BuddyPress enabled WPMS site, it occurs to me that the profile fields between the two systems don’t automatically integrate with eachother.

    I didn’t see any other topics relating to this, so if I missed it, please feel free to direct me to those conversations! In the meantime though, it makes sense that this should be an inevitable feature for BuddyPress to work on – if we run a BuddyPress network with MS and allow members to have blogs, they are going to be faced with two seperate profile pages. The BuddyPress created one which defaults to just your name, and the WordPress one which has many more options such as web site, social networking links, and a short bio.

    I’d love to see a future version that automatically pulled the WP fields into BP, and cross-populated them between the two systems so that members are not wondering why they have to fill in such information twice. Anybody agree?

    #10950
    Mike
    Participant

    I have this site http://bit.ly/an758J runnning wmpu and buddypress. Registration form http://bit.ly/cOilRD has additional fields
    where users fill out for the profiles.

    What I am trying to do is allow the admin to edit these fileds and profiles for all users. However I can’t seem to figure out how.
    when I login to my admin panel and click on users and then their profile, I only see basic/default fields but not the extra fields
    I have created on my register page.

    Also is there a way for admin to have an extra field for each member to write down additional notes about each user, only for admin
    purposes (for example:

    member Jenn123:
    Admin Notes/Comments: member lives in Miami, FL – birthday 04/12/1975

    Thank you for all your help.

    dwdutch
    Participant

    I want certain data (e.g. annual-membership-status) to be associated with an individual member but not allow the individual member to change the field’s content – such changes can only be done by the site-administrator.

    My strategy is to put all such fields in an xprofile group called “Admin-only” then create a function to hook in edit.php via do_action( ‘bp_before_profile_field_content’ ) that would cause the edit.php loop to NOT display the Admin-only group if the user wants to edit their profile data. in this fashion, the information would be visible ot the user just not administrable.

    Whereas, this seems to be the perfect place to add my hook while the core code is looping to generate the xprofile display groups, I can’t figure out how to affect the actual edit.php loop processing from my do_action replacement function. Ideally, I’d have something like the following in my functions.php file:

    <?php
    function skip_group () {
    if ( bp_get_the_profile_group_name() == “Admin-only” && !is_site_admin() ) {
    // my attempt to cause the primary while loop in edit.php to advance to
    // the next iteration without displaying fields for the current group.
    continue;
    }
    }
    add_action( ‘bp_before_profile_field_content’, ‘skip_group’ );
    ?>


    p.s. yes, I understand WHY the above code won’t work because of the inability of the “continue” to impact beyond the scope of the enclosing function — i just can’t figure out an alternative approach.

    LPH2005
    Participant

    I have several profile fields that have been added to The Chem Book. Is it possible to show one (not all) of these fields below the avatar? Is there a setting, plugin, or change to the theme that is required?

    #75177
    nig3d
    Participant

    this hasn’t be fixed yet. Has the ticket been created?
    Moreover what was bp_fields_has_data supposed to do originally? Because if it should check if the field exists, it seems straightforward to fix.

    #75094
    Heiner
    Participant

    Sorry, no answers, just additional questions:
    @katendarcy Which plug in do you recommend or use for facilitating the payments?

    In the front end I would like to display custome fields of paid users only. Still I want all users to see all custom profile fields when setting up their profiles so they see what they are missing when they have a free membership.

    designodyssey: I found that role scoper helps to shape the user types and their capabilities. So the user role should be the key. In future there might be two or more categories of paid users.
    I see there are a few more of you working on this, so any hints are appreciated.

    Jeff Sayre
    Participant
    #74886

    In reply to: Badge Maker

    gregfielding
    Participant

    @warut

    I’m playing with 1.3 and it’s working great…

    2 suggestions:

    1. Create an option in the admin menu to hide the names of the profile fields. Most of the fields are pretty self explanatory anyway and the extra words just clutter things up.

    2. Create an extra field for users to type in a short message or description, giving them some other way to personalize their badge.

    It looks great warut!

    gaysurfers
    Participant

    I see many people desperately asking for the following :

    – Privacy Features

    – Advanced Search & X-Profile Fields – Bp member filters is not working with buddypress 1.2

    – User-Blogs-Posts from Front-end

    And no information on when that will be avaialble…

    Can anyone help?

    When will that be?

    #74868
    gaysurfers
    Participant

    Can anyone help?

    We desperately need :

    – Privacy Features

    – Advanced Search & X-Profile Fields

    – User-Blogs-Posts from Front-end

    When will that be?

    py2o3434
    Participant

    Hi,

    Is there a way to categorize users? Such as one for staff and one for regular users. I want to have different profile fields for different users. Does anyone know if this is possible and how i can do so?

    Thank you

    #74630
    techguy
    Participant

    Thanks r-a-y. I was actually ok with them having to activate it, but I guess if they don’t agree to give their Facebook email there’s no sense. Plus, if they already verified with Facebook, we should be good to go.

    However, should we still do something like this:

    /* Multisite installs have their own install procedure */

    if ( bp_core_is_multisite() ) {

    wpmu_signup_user( $user_login, $user_email, $usermeta );

    } else {

    wp_insert_user($user_data) ;

    }

    Although, maybe that doesn’t matter so much once WPMU and WP are merged?

    I also think it’s better to offer the code to the plugin developer instead of using his hook, no? Then, future BP users it will just work out of the box.

    I’ll try out the x-profile field stuff. Is there any documentation anywhere on the x-profile fields? What’s required? What’s available, etc?

    #74591

    In reply to: Profile Hooks?

    Boone Gorges
    Keymaster

    Download this plugin and check out the code: https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/ It will show you the basic method I used to modify specific xprofile fields. Short version: you can filter the output of xprofile fields in general, and then you use a conditional to detect the name of the profile field that you want. Not enormously elegant, but hopefully that code will get you part of the way there.

    #74590
    Windhamdavid
    Participant

    the api eh? (a large percentage of shared hosts are poor quality, we’ll never be able to fix that) my take is that at it’s core, it’s “the missing extended user profile framework for WordPress”. It would, in my feeble opinion act primarily as a framework api for extending those profiles. Some of the issues and limitations are really presented by wordpress and mu.. not Buddypress and in much the same way that bp extended the wordpress user profiles/functions we should tackle those head on as had been done with the improvements in the BP1.2 registration. There are infinite ways to build on those relational database fields. Focus exclusively on bp_xprofile _fields, and _data. It’s not that I’m anti-activity stream and the terms social network, life stream or whatever just seem to incorporate user profiles into some sort of relational scheme, be it friends, followers, ‘like’-ing, sharing or chronological micro blogging. Extending the stability, functionality, and interactivity of each component is the goal, but I’d prefer to see no dependency among core elements with one another. It’s fairly simple to build out a “social network” in other popular content management systems by extending the user database fields and in my day to day practice, I typically use only about 20% of the Buddypress core components for a WordPress project. Even though the hype is in the activity stream and the extensions for it (more facebook or twitter like), I side with @stwc in that “It also means that the platform has to have a robust set of tools for the administrator and moderators of the community “. A community (or ‘social network’) is just a set of users and to me, key items are a small footprint on the database and tight the integration with the existing wordpress user roles, permissions, registration and management. The api should ideally be flexible enough to accommodate any possible relational data between user profiles that a plugin author may dream of. I think the core integration between user profiles and the activity/blogs/groups/forums/friends illustrate the foundation of the api and should be as unified, consistent, and simple as possible with very little dependency or overlap in functionality. This would be impetus for creating a more standardized way to interact with the xprofile and be a good foundation for a solid api. lastly, thanks @mrmaz for starting the thread, being pro-active, getting the trac and api.buddypress and generally illustrating the potential of a solid api in regards to how well your links plugin and others can interact with the core.

    ps.. death to PHP4 and fsck backwards compat

    #10811
    kipprsnak
    Member

    Hi,

    New to Buddypress here and I’m wondering if there are any hooks for the extended profile fields or is someone could tell me how to add a filter to them.

    All I can find right now are the functions that return the data. I have a plugin I want to use that needs to filter one particular profile field. I know how to get to the data, but I don’t really know how to add the filter since I don’t see any “hooks” exactly.

    Also, does anyone know off the top of their head if wordpress profile fields are the ones bp is using or are they separate?

    Thanks so much and sorry for the newbie question.

    #74585

    In reply to: Profile Fields

    peterverkooijen
    Participant

    WP, WPMU and BP each have their own member admin areas, both frontend and backend, and data tables in MySQL, some of them synced, most not. Member management is an afterthought for Automattic. Hopefully it will be fixed in 3.0.

    #10809
    sameast
    Participant

    Hi

    I am in need off some help!

    Has anyone managed to turn the field groups into menu items?

    For instance when you go to profile fields setup within the buddypress menu you can add an extra group.

    What i am looking to do is have each one off the groups as a separate page,

    because at the moment its just all added together within the profile loop.

    example.

    Say i add a new group call “Contact Info” and then i add the fields “name” and “address”

    And i add a new group call “Case Studies” and then i add the fields “case study 1” and “case study 2”

    I want “Case Studies” and “Contact Info” to be their own separate pages.

    So a members profile will have separate pages,

    I hope this make sense, i sure someone must have done it?

    Any help please

    #74580

    In reply to: Profile Fields

    Brajesh Singh
    Participant

    If you mean the User entered data, it is available on their profile not inside the wp-admin. You will need to visit their profile to see the data.

    #74579
    peterverkooijen
    Participant

    @Andy Peatling, so version 1.2 does sync separate firstname and lastname from the xprofile field to the fields in wp_usermeta?

    I will upgrade when WP 3.0 is out, probably this Summer when my day job work is slow. I have a custom theme. It will be a complicated operation.

    #10807

    Topic: Profile Fields

    in group forum Installing BuddyPress
    stmedia
    Participant

    Hello

    Where do I find the details that users have filled in into the extra profile fields I set up. All I see in the wp-admin users are the WP fields

    #74542

    In reply to: Badge Maker

    Nahum
    Participant

    nice one. would be good to admin what profile fields should be made available to user. I have long list of fields that only get used as custom fields for other purposes than regular display. but yea some changes on backend don’t update on front, specifically the V/H Layout option didn’t work by setting it in admin, only when i set to allow user to decide layout does it update on hitting update badge. btw what’s the best way to overwrite the default logo image. thanks.

    #74516
    r-a-y
    Keymaster

    Just looking into the bp_core_signup_user() function again. Sorry for pointing this to you in the first place!

    I would not recommend using this function because it sets a user’s status to “not active”, then sends an email to activate the account (which makes sense because that’s the default registration behavior in BP!).

    Since we don’t want to ask a FB user to activate their account, stick with the wp_insert_user() function, then use some code to sync up the xprofile fields like:

    // set xprofile field 1 (Name) with the fbuser's first name
    xprofile_set_field_data(1,$user_login_id,$fbuser['first_name']);

    /*
    * @param $field The ID of the field, or the $name of the field.
    * @param $user_id The ID of the user
    * @param $value The value for the field you want to set for the user.
    */

    To initialize BP, look at using the bp_init action:

    https://codex.buddypress.org/how-to-guides/checking-buddypress-is-active/

    [EDIT]

    Just looking into the WP-FB-AutoConnect plugin, Justin (the author) has a do_action that you could hook into:

    do_action('wpfb_login', array('WP_ID' => $user_login_id, 'FB_ID' => $fb_uid, 'facebook' => $facebook) );

    Here you can sync up your xprofile fields, etc. Unfortunately, this action occurs every time a Facebook user logs in. You could view this as a positive or a negative!

    I think it would be nice if Justin added another do_action right after the wp_insert_user() function in _process_login.php.

    [EDIT #2]

    Requested a new do_action on Justin’s plugin page – http://www.justin-klein.com/projects/wp-fb-autoconnect/comment-page-5#comment-11638.

Viewing 25 results - 4,751 through 4,775 (of 5,698 total)
Skip to toolbar