Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 2,751 through 2,775 (of 3,575 total)
  • Author
    Search Results
  • #90254

    In reply to: Introducing JobBoardr

    rossagrant
    Participant

    @travel-junkie Just looked at the CV creator and you know, this could be phenomenal!
    The only thing I would need extra really is the ability to change the fields that appear in the CV (in the same way you can add profile fields etc in BP) That would be absolutely superb. Also the avatar doesn’t appear when you download the CV as a PDF. Is that supposed to happen? It would be great to get the avatar also.

    Cheers!

    If you can make the plugin customisable in terms of the CV profile fields I’ll definitely be buying a copy of this off you!

    #90250

    In reply to: Introducing JobBoardr

    Anonymous User 96400
    Inactive

    I am aware that CVs have different formats from one country to the next, so future versions will provide a way to completely customize any aspect of a CV.

    This will be loosly based on the new way of generating and sorting profile fields in the BP trunk and on CV templates provided by users of JobBoardr.

    Once you signed up to the test site, you can set up your own CV already and then generate a PDF file from it. The user-avatar gets automatically included as of now. The project that sidetracked me from finishing the first stable version of JobBoardr doesn’t actually need all the CV extravaganza, so a CV-rewrite will come with version 1.1.

    Saying that, if you know a bit of PHP and OOP it’ll be easy to adjust the function responsible for outputting the PDF file. You’d also need to adjust the theme template for the CV, but that can be copied over to a child theme and does not involve any core-JobBoardr modifications.

    What you get out of the box right now is basically an English CV (the one I used when I lived there). I am German, so I’ll provide a German CV as well. Other than that any other templates will have to be provided by users of JobBoardr.

    #89997
    rossagrant
    Participant

    @gregfielding https://buddypress.org/community/groups/bp-profile-search/activity/

    Check it out mate, it’s exactly what we need!

    Just need a way of hiding the form through ajax as the search form can be BIG when you have a lot of profile fields to search from.
    You know like the ‘new topic’ form is hidden in the forums directory etc?

    We just need this hidden in the members directory and it’s perfect. Lets you search with one or more fields selected.
    Let me know what you think!

    #89992
    rossagrant
    Participant

    @gregfielding Totally agree there! To be able to find members by searching across multiple profile fields is really a feature that I’m sure most would love on BP. Does anyone have anything in the works?

    #89977
    Roger Coathup
    Participant

    @thomas – this is something we are also looking at. @hnla is on the right lines, the following thread throws some more light on the problem:

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/dynamically-create-new-sets-of-profile-fields/

    #89975
    Hugo Ashmore
    Participant

    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.

    #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.

    Roger Coathup
    Participant
    #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.

    #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

    #87887

    In reply to: bettercodes.org

    gottowik
    Participant

    @Anton Some of the first bp releases came with an option to insert all countries in wp-admin by direct sql insertion. Someday it was removed because it was not implemented well…. I am not sure who thought it would be better to type in all these countries manually… :-)

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/what-happened-to-add-prebuilt-field/

    If you really need all of these countries, just write a short sql script and take this data: http://pokerexistence.com/wp-content/plugins/buddypress/bp-xprofile/prebuilt-fields/?DD

    #87794
    techguy
    Participant

    I found this little function:
    $user_test = new BP_Core_User( $referring_user_id );

    Has the full name, but you still have to go through all the xprofile fields. Plus, is it ok to call the user info this way? Will it have problems down the line.

    Another option is to sync the display_name with the name in the BP profile field, but I’m not sure the best way to do that and that could be problematic if they make changes to the name later.

    Anyone else run into this issue?

    techguy
    Participant

    The beta release of the BP oembed plugin I think will allow pictures to be embedded from outside sources in profile fields. It’s not an upload, but might be better than an upload depending on what you’re doing.

    #87232

    In reply to: Registration Page

    dlmfisher
    Member

    Fixed! I went back to the database, searched on the pre-propagated terms, and found them in user “0” fields for all x-profile table rows, and deleted the responses. Everything’s now blank as it should be.

    #87069
    nickmy
    Participant

    no I just need a little hack… It must be visible when I use this:

    /***
    * If you’d like to show specific profile fields here use:
    * bp_profile_field_data( ‘field=About Me’ ); — Pass the name of the field
    */

Viewing 25 results - 2,751 through 2,775 (of 3,575 total)
Skip to toolbar