Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 4,551 through 4,575 (of 5,698 total)
  • Author
    Search Results
  • #89975
    Hugo Ashmore
    Keymaster

    With difficulty. I would suggest best approach is to create a new field group add a series of text fields the user ‘could’ use, ensure they are optional, user fills in what they wish and you only display those fields that return a value i.e have been completed. note: a new field group will only be editable from the user profile and would not appear on sign up page by default, if required on sign up page then add new fields to the base group.

    #14500
    thomas
    Participant

    I’m building a buddypress looking like LinkedIn, but i need to make users able to add more than one professional experience.
    For now, i made a profile field called “Experience”, where there is some info to fill in….but how could i do to let the user add more than the existing fields.

    #89936
    rossagrant
    Participant

    @r-a-y Not sure if you’ll know this r-a-y but does this plugin allow me to search by multiple fields? e.g. Can I search for ‘females’ with ‘blonde’ hair etc?

    I am starting work on a site where models will have profiles set up on attributes such as hair colour, eye colour, height etc and really need clients to be able to search for members matching more than one field.
    Cheers.

    #14482
    thomas
    Participant

    Hi, i just started configurating BP for my project but i have a little issue.
    I created profile information fields for users:

    Name
    Location
    Date of Birth
    Activity

    The three first ones works perfectly (textfields) but the last one won’t work.
    I selected a multi-checkbox type, it appears in the profile but when i go in the profile to set it up, when i save it, it will not update…

    any clues?

    Thanks to all of those who will read and a huge thank you for those who will answer.

    #14477
    rossagrant
    Participant

    This has me stumped.

    I have an age profile question in my BP base profile fields set up in increments like ’16-25′, ’26-30′ and so on.
    A user selects an age group on sign up and it displays in their profile no problem yet when clicking on that age group to do a search, it always returns no results.

    Anyone know why this is.
    I can click on other profile fields I have created and they bring back search results of other members with the same criteria but not the age one. I expect it must be the way it is written or something? Maybe as it has a ‘-‘ in it perhaps?

    Roger Coathup
    Participant
    #14474
    Mischa
    Participant

    Hi guys. Is it possible to create more information fields for groups?
    For example, also the location or something else.
    At the best it should be similar to the field adding for the user profile.

    Thx a lot for the help!
    deMischa

    katemgilbert
    Participant

    I want to display Twitter and Linked in icons in member profiles as hyperlinks to the specified page on those sites. I have no problem adding custom fields to display the Twitter handle as hyperlink and LinkedIn URL as hyperlink, but what about displaying the icons themselves as hyperlinks based on the data the user submitted in the profile custom field? Possible?

    #14366

    Topic: Databse errors!

    in group forum Installing BuddyPress
    Jon
    Participant

    I have wordpress 3.0.1, and only a handful of otehr plugins (none of which should be an issue. I install the plugin, and activeate it, then get :

    WordPress database error: [Table ‘xdatabase.wp_bp_xprofile_data’ doesn’t exist]
    SELECT value FROM wp_bp_xprofile_data WHERE field_id = 1 AND user_id = 1

    WordPress database error: [Table ‘xdatabase.wp_bp_xprofile_fields’ doesn’t exist]
    SELECT * FROM wp_bp_xprofile_fields WHERE id = 1

    WordPress database error: [Table ‘xdatabase.wp_bp_xprofile_fields’ doesn’t exist]
    SELECT id FROM wp_bp_xprofile_fields WHERE id = 1

    WordPress database error: [Table ‘xdatabase.wp_bp_groups_members’ doesn’t exist]
    SELECT COUNT(DISTINCT m.group_id) FROM wp_bp_groups_members m, wp_bp_groups g WHERE m.group_id = g.id AND m.user_id = 1 AND m.is_confirmed = 1 AND m.is_banned = 0

    WordPress database error: [Table ‘xdatabase.wp_bp_messages_recipients’ doesn’t exist]
    SELECT unread_count FROM wp_bp_messages_recipients WHERE user_id = 1 AND is_deleted = 0 AND sender_only = 0

    WordPress database error: [Table ‘xdatabase.wp_bp_xprofile_groups’ doesn’t exist]
    SELECT id FROM wp_bp_xprofile_groups WHERE id = 1

    WordPress database error: [Table ‘xdatabase.wp_bp_xprofile_fields’ doesn’t exist]
    SELECT id FROM wp_bp_xprofile_fields WHERE id = 1

    WTF? I knwo for certain that the sql databse was clean of BP stuff before i ran the install, there should be nothing to clash.

    Any ideaS?

    BTW, it says it activated successfully and i can use it ok, which is a little worrying =D

    katemgilbert
    Participant

    I am trying to display custom profile fields within the group members loop (bp_group_has_members()), and have tried 2 different template tags that I found in other forum threads, but neither returns any data.

    Here are the two modes I’ve tried:

    xprofile_get_field_data( ‘Email’ ); where ‘Email’ is the name of the field on the form

    bp_member_profile_data( ‘field_5’); where ‘field_5’ is the field’s ID

    Does anyone know what I’m doing wrong? Or how to solve this problem?

    #89206
    Roger Coathup
    Participant

    @tubruk

    I’m not really sure what you are trying to do with your code. Whereabouts are you trying to hide fields with no data? In the default theme profile-loop.php, fields without values are already not displayed.

    As for quick fixes: You’ll need to replace ‘your-field-id’ with a variable that’s got the field id in it. You’ll also need to write valid PHP e.g. closing the PHP code before beginning your html. I’d steer clear of inline style definitions as well; the default BuddyPress theme comes with a comprehensive set of CSS files, and you’d be better augmenting these with style definitions.

    Unfortunately, this forum isn’t really the appropriate place for PHP coding tutorials – You might be better reading up on PHP before attempting to modify the theme templates in any depth.

    #89176
    Roger Coathup
    Participant

    @tubruk

    in your child theme, wherever you want to hide fields that have no data, you can put a simple if statement, something like:

    if (bp_get_profile_field_data(‘field=your-field-id’) === “”) :
    // don’t display code
    else:
    // display code
    endif;

    Which file to edit, all depends where it is you are wanting to display / hide the profile field. The most likely file for displaying profile fields is profile-loop.php in members/single/profile, but that already skips blank fields (using a call to bp_field_has_data(); that function has to be used inside the profile field loop).

    #89046
    pcwriter
    Participant

    Here’s an option:
    https://buddypress.org/community/groups/custom-profile-filters-for-buddypress/

    It turns any profile field into a clickable search term that brings up directory of all profiles matching that term. Could be useful… depends on how you want to use it.

    #89001

    In reply to: Hide profile field

    nickmy
    Participant

    @r-a-y & @djpaul thank you very much I’ve got a last question what do I need to change if I want to hide more profile fields

    #88998

    In reply to: Hide profile field

    r-a-y
    Keymaster

    Tested just now, works for me.
    You need to use the profile id #.

    Go to your profile field setup and check the ID by putting your mouse over the “Edit” field. The ID # is field_id.
    For example, “Name” is 1.

    Either that or go to your DB and manually look up the profile field id in the wp_bp_xprofile_fields table.

    You can also use any profile template tag and do your conditional.

    If you wanted to use the profile name, use bp_get_the_profile_field_name() instead.

    #88868

    In reply to: Hide profile field

    r-a-y
    Keymaster

    You have to ask 1000 and 1 times! ;)

    You have to modify the profile loop (/members/single/profile/profile-loop.php)

    Change this line:
    while ( bp_profile_fields() ) : bp_the_profile_field();

    to:
    while ( bp_profile_fields() ) : bp_the_profile_field(); if ( bp_get_the_profile_field_id() != 'ID # YOU WANT TO SKIP' ) :

    then change the corresponding endwhile; line to:
    endif; endwhile;

    That’s one way of doing it.

    #88840

    In reply to: Hide profile field

    nickmy
    Participant

    I asked 1000 times how to hide special profile fields :P no answer @r-a-y @djpaul @hnla????

    #88834
    Roger Coathup
    Participant

    @arxpoetica – we haven’t implemented any code yet, as we may now be moving all profile field handling out of BuddyPress on this client project.

    If we do end up cutting BP code this, I’ll remember to post a snippet.

    Steve
    Participant

    Hi All,

    I have setup and installed my version of BuddyPress, everything is going smoothly bar this!

    One my registration page I have a number of fields. The wordpress side; Username, Email, Password. And then the BuddyPress Profile side; Name, Age, Bio etc.

    Why the hell would I want two “Name” fields both Username and Name? I want to be able to delete the WordPress “Username” field and just use the BuddyPress “Name” core field for everything.

    My website has no need for usernames… I have only about 150 members, this number will not grow. Nobody has the same name as another. I want to publicly display and use the “Name” field (which is everyone’s full names) and get rid of the Username field!

    Thanks,
    Steve

    #14238
    Bo Broadfoot
    Participant

    Is there a way to have the “date selector” field type be year only? Or should I make a feature request for a “year selector”?

    It is a very common profile question to ask the users “what year did you graduate” or “what model year is your car” to which the profile data should be “1996” not “day,month,1996.”

    I thought of just doing it as a “drop down select box”, but then I would have to add every year from 1920-2010, and next year I would have to add another option for 2011 and the next year and so on.

    I haven’t coded in years and php has always made my eyes bleed :), plus I was looking for a way to do this that wouldn’t break when I changed themes or plugins around.

    #14218
    amahesh
    Member

    Hello I have an excel chart with all the data for accounts (username, e-mail, password, base profile fields) and I was wondering if there was a quick way to import this data into buddypress and create these accounts

    Thanks

    #88580

    In reply to: User Pages?

    nickmy
    Participant

    yeah but maybe you want to have somethink like nickpage :)….

    and it would be cool if you could show fields/categories in a new tab on profile homepage

    #88575

    In reply to: User Pages?

    Beck B
    Participant

    Wait, I’m confused. You want it to show up in their profile, right? So why not just create a profile group and relevant fields?
    Although…hmm….that might get tricky in terms of multiple Living/Deceased. Or you just allow a max number of pets (say, 5 in each category) and create that many profile fields. Anything left blank won’t show up in the profile.
    That wouldn’t let you upload photos natively, although I wouldn’t be surprised if we already have a plugin for that.
    Then again, you also wouldn’t have anything compiling everybody’s tributes. Is that what you want? Have to admit, I’m not super-clear on what you’re looking for.

    Hm.. Not my most helpful reply, sorry.

    Another thought: maybe you can mix a form you create with one of the front-end blog post plugins. So whatever interface they’d normally have to post an entry to the blog (your listing of everybody’s tributes) would be heavily locked down to just the info you want. I’m thinking BuddyPress would automatically include a link to the generated tribute post somewhere in their activity feed. (I know you said you don’t want a blog type page, but here I’m assuming you meant that you didn’t want the submission page to be part of a blog, not that you don’t want the submitted tributes to be incorporated in a blog.)

    #88504
    Arx Poetica
    Participant

    Just following up on this — what might some code look like? Say, to just even simply create a new profile field type and populate it once?

    #88376
    lorenzo
    Member

    i’m not sure if i’m posting in the wrong place, if i’m asking the wrong questions or both?

    does anyone have a clue about the above and where the code which does the update of the profile fields actually is? some guidance/suggestion (any) will be very helpful to put me in the right direction! thanks

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