Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 2,326 through 2,350 (of 3,608 total)
  • Author
    Search Results
  • #125360
    modemlooper
    Moderator

    Sounds like good enhancement/plugin

    #125256
    recruitbk
    Member

    @pcwriter: thanks for your help, still having some trouble displaying. I think the trouble is lying within the
    on the edit.php where all of these fields are displaying. I added a border to the wrapper just to see what was happening. It looks like the loop is actually looping the profile-wrap, even though I only have it for first name, middle name, last name. I tried removing the while loop all together, and then no fields are visible. Any ideas on what I can do here?

    `#profile-wrap{
    width:100%;
    border:1px solid #dbdbdb;
    }

    #profile-wrap #edit-profile-right-column-firstname, #profile-wrap #edit-profile-right-column-middlename, #profile-wrap #edit-profile-right-column-lastname{
    display:inline-block;
    width:50%;
    margin-right:2%;
    }`

    In my html, I’m referencing as shown below , but BP is just defaulting to the standard profile page formatting putting those 3 fields one below each other instead of on the same line. You can login again and see what I mean (un: jahmakan5 , pw:test)

    `

    <label for="”>
    <input type="text" name="” id=”” value=”” />

    <label for="”>
    <input type="text" name="” id=”” value=”” />

    <label for="”>
    <input type="text" name="” id=”” value=”” />

    `

    #125213
    bikramglobal
    Member

    Thanks kwerri,

    I did what you said and here’s what happened with BP Default theme activated:

    WordPress database error: [Table ‘BikramGlobal.wp_bp_xprofile_fields’ doesn’t exist]
    SELECT id FROM wp_bp_xprofile_fields WHERE name = ‘Name’

    etc…

    #125105
    dude
    Member

    okay reverted back to the default and still the same issue

    If I sign in as Admin and view a non-friend profile that has checked the privacy settings I get the message ‘you must be friends with this user to view their profile’ all is good, but..

    If I sign in as a member and go to a friends profile – again that has their privacy settings checked I cannot see any of their profile fields – plus there is nothing on display in terms of the above notice – you must be friends blah blah

    I got rid of ALL walled-garden edits and still the issue persists dude :(

    The trouble is in total I’m running 10 plugins

    I’ve stripped my plugins down to the bone and even sacrificed a couple that I ‘want’ more than ‘need’ if you know what I mean, so can’t afford to lose anymore or major functions on the site will be sorely missed.

    Is it at all possible that this issue with the privacy plugin is ringing any other ‘alarm bells’ apart from plugin conflict..?

    modemlooper
    Moderator

    Just read you don’t want to edit home.php. There isn’t a filter for privacy like there is with messages for showing profile sections. Messages and xprofile fields has logic for output and can be filtered but the actual page needs a code edit.

    #125030
    modemlooper
    Moderator

    In the admin under BuddyPress menu there is a section “profiles” you can add more fields for users to fill out at sign up . These are not hidden, you will have to come up with your own solution. Hiding fieldsis on the development road map. There is also BuddyPress profile privacy plugin.

    #124960
    recruitbk
    Member

    login username is just jahmakan5 password:test
    I’ll replace the html comments, but thats not affecting the white space. Its the hidden fields for sure.

    #124959
    julien760
    Member

    Nobody else have try to do this ?

    julien760
    Member

    hello,

    I try to do the same thing. I want to display a specific picture following the gender of the members.

    I use add_filter and the picture of the profil is the good one but all others pictures from sidebar, for example, are the same…

    Have you finally find a solution for this issue ?

    Thanks in advance,

    My test code :
    function bp_remove_gravatar ($image, $params, $item_id, $avatar_dir, $css_id, $html_width, $html_height, $avatar_folder_url, $avatar_folder_dir) {
    $default = get_stylesheet_directory_uri() .’/images/bp_default_avatar.gif’;
    if( $image && strpos( $image, “gravatar.com” ) ){
    if ( bp_get_profile_field_data( ‘field=Gender’ ) == ‘Female’ ) {
    $default = get_stylesheet_directory_uri() .’/images/def_f_avatar.gif’;
    return ‘female‘;
    }
    if ( bp_get_profile_field_data( ‘field=Gender’ ) == ‘Male’ ) {
    $default = get_stylesheet_directory_uri() .’/images/def_m_avatar.gif’;
    return ‘male‘;
    }
    else {
    return $image;
    }
    } else {
    return $image;
    }
    }
    add_filter(‘bp_core_fetch_avatar’, ‘bp_remove_gravatar’, 1, 9 );

    #124889
    julien760
    Member

    Thank you for your answer Xevo.

    Ok but if I do that, I’ll need to do in all area where there is profile picture… even in widget on sidebar… in member list, etc… It is very long, no?

    It is not possible to modify the bp_member_avatar function to include this test?

    It’s works like this when a member upload it’s own picture, it is automatically display as avatar but I don’t know how it works.

    Thanks

    #124884
    Xevo
    Participant

    Get xprofile field result, run it through an if, and just get the avatar out of your images folder of your theme. No buddypress avatar functions needed.

    #124662
    4ella
    Participant

    Your code should work because this code : php bp_member_profile_data( ‘field=Country’ ); works for me in members-loop.php – didn’t try it in BP 1.5 yet

    #124016
    jonnyscholes
    Member

    BP Media has a nice upload function accesable from the users profile, if you dig through their plugin files im sure youd find a similar function. Or are you looking for some sort of shortcode for users?

    Theres also https://wordpress.org/extend/plugins/buddypress-activity-plus/screenshots/ which might be sort of what your looking for…

    #123853
    AmesEla
    Member

    Hi there,

    I am having a major issue in that the registration is not populating the fields in the user database. Can anyone help? intooutside.org/sign-up

    Somehow the fields are not inputting the data into the user profile (ie: first, last names are required and they are nowhere in the database). This happened after I installed Buddy Press

    Help!

    PS I am not a coder and know conceptually, so speak laymen if possible in your response :)

    #123704
    spennis
    Member

    Still no answer to this one! Once again…I do not understand the purpose of the extended profile the way it works (doesn’t work) right now.

    #123703
    spennis
    Member

    I have been asking for the same thing but no answer. This should be something that the Buddypress theme should integrate in future versions! It should be fairly simple and very useful! Not to mention a simple way to show the extended profiles…

    #123624
    Quint
    Participant

    @katje, were you able to get a resolution on finding a multiple-criteria “search” plugin?

    @boonebgorges, Boone, I hope I’m not hijacking the thread because my question reflects one of katje’s questions: Is there a plugin or something close (that I could point a developer to) that would accomplish a multiple criteria search across the membership directory? Here’s a scenario: Let’s say that my membership comprises global athletes, both professional and social. Furthermore, each one of these athletes compete in many different sports. My potential membership could be in the hundreds of thousands, probably millions. My users would need a way to sift through a directory of that size. So, if my xprofile fields contain tria-thletes some of whom have held the profession of astronaut, then I dare say 99.99% of the membership would not meet that criteria. It’s an extreme example which I hope illustrates the need across general searches.

    BTW, if this is considered hijacking a thread, please let me know and I’ll create a new topic.

    #123578
    crazplain
    Member

    @boonebgorges
    Hi Boone,
    I am trying to create a multi step sign-up registration page. Preferably also include some new profile field such as multi category drop down list and country with flags. Should i create new rows in wp_bp_xprofile_fields?
    or just follow the example above and it will create it for me?
    I was also wondering if I can have have something like step1, step2 etc like godaddy.com?

    PBTam
    Member

    Hey modemlooper, I tried the line of code: bp_member_profile_data( ‘field=the field name’ );

    but it simply puts the line of code as text onto my groups page. is this because the data is in the members loop but not available in the groups loop?

    EDIT:

    I found a way to do it here: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/profile-fields-in-members-list-on-groups-page/

    the code used was this:

    <?php $location = xprofile_get_field_data('Location', bp_get_group_member_id());
    if(!empty($location)) : ?>

    PBTam
    Member

    I checked the entry.php file in the theme/activity folder but I was unable to find an explanation to insert xprofile fields. Any hints?

    modemlooper
    Moderator

    In the file entry.php in the activity folder you can see a comment that explains how to show xprofile fields in the member loop

    #122434

    In reply to: User documentation

    r-a-y
    Keymaster

    The only way to import generated profile fields at the moment is to do a straight database export of the xprofile field tables and then import them into your new site. (These database tables are “wp_bp_xprofile_fields” and “wp_bp_xprofile_groups” by default.)

    The codex is basically a WordPress blog. I believe everyone who has an account with buddypress.org should be able to login at codex.wordpress.org/wp-admin/ and post something. Though, your post might be held as a draft until someone with higher permissions can look at it.

    If you have ideas for codex articles, please feel free to post them. If you encounter problems, let us know.

    There isn’t a single document to reference for documentation. I don’t believe WordPress has a document like that available on their codex. (I could be wrong though!)

    #122359

    In reply to: User documentation

    I, too, am looking for documentation. I found the BuddyPress codex [1]. However, I find it somewhat lacking. Is it a wiki like the WordPress Codex[2]? If so, I may add what I learn to help others.

    Ideally, I am looking for a single-document version of the documentation. I would like to print it and have it as a reference as I work. Has that been done before? What would it take to write a script to combine the existing docs at [1] into a single document (HTML, PDF, etc.)?

    @mercime, I am specifically looking for information about user profile fields: I’d like to import an existing set of user fields. I haven’t searched the plugins yet; I’m still trying to get oriented to the BuddyPress support system. As for “submitting articles,” where do the articles live? How do I submit one?

    Thanks!

    [1] https://codex.buddypress.org/home/
    [2] https://codex.wordpress.org/Help:Contents

    #122913
    Gossy Uk
    Member

    @darrenmooney

    Your solution

    I had this same problem.

    TO fix it, go to the BuddyPress Profile Fields Admin Area,

    Rename the Full Name to Name
    Rename the Main Profile Field Group to Base

    Save.

    This will fix the issue.

    Cheers
    http://studentscircle.net

    #123352
    Paul Wong-Gibbs
    Keymaster

    Sure. In your theme, edit up /members/index.php and /members/members-loop.php. In the latter, which is where you will most likely want to make your changes, there’s a block of text starting “If you want to show specific profile fields here you can…” which explains how to add in extra fields.

Viewing 25 results - 2,326 through 2,350 (of 3,608 total)
Skip to toolbar