Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 1,651 through 1,675 (of 3,594 total)
  • Author
    Search Results
  • jancbeck
    Participant

    Thanks your for your answer. I guess I did not make myself clear enough.

    Each user should be able to add as many of these fields as he or she likes. If one had done many jobs in his career one would require a lot of the aforementioned fields. If I’m a young grad student there are probably not gonna be too much. That’s why each user should be able to duplicate the initial field group to have as many as he wants.

    I don’t think Buddypress can do this out of the box. I looked at database structure and it seems each user can only have one field assigned to field of a group (1:n relationship).

    Renato Alves
    Moderator

    You can add as much as fields as you want. The students would fill them according in their seetings page (here you could change the name for one more appealing) and those fields are searchable by default so you would not have a problem with it.

     

    Bu BuddyPress does all you want out of the box.

    #161673
    bp-help
    Participant

    @tux-kapono
    This can be done out of the box. In the dashboard/users/profile fields create a new profile field under base because this is the fields in registration and under “Is this field required” make it required. In “field type” choose checkboxes. Under “please enter options for this Field:” just leave sort as is and in the text field below it type “I Agree To The Sites Terms Of Service” (This can be what you want really just a suggestion). Under “Default Visibility” check Default value. And That wraps it up really.

    @mahdiar

    Suggesting as a trac ticket is not necessary. Its already there if you just do the follow the instructions given!

    #161628
    meg@info
    Participant

    Hi @gsj,

    Add this code to functions.php file of the current theme.

    `
    add_filter(‘bp_xprofile_get_hidden_fields_for_user’,’bp_define_hidden_fields’, 10 ,3 );
    function bp_define_hidden_fields( $hidden_fields, $displayed_user_id, $current_user_id ) {
    //if not admin or if not the the profile of the current user
    if ( !is_super_admin( $current_user_id) && ($displayed_user_id != $current_user_id) ) {
    //add name field ( id = 1 ) to the hidden fields
    $hidden_fields[] = 1;
    }
    return $hidden_fields;
    }
    `

    #161566

    In reply to: Profile Data Deleting

    Zachary DuBois
    Participant

    I am running WordPress Multisite 3.5.1 in the root directory. When I had everything setup correctly after installing BuddyPress it broke some of the profile fields on some users. I am running BuddyPress 1.7. I have the following latest versions of plugins and none of them from trial and error did anything:

    • Bad Behavior
    • bbPress
    • Blubrry PowerPress
    • BuddyPress
    • Flowplayer 5 for WordPress
    • Jetpack by WordPress.com
    • SI CAPTCHA Anti-Spam
    • Wordfence Security
    • WordPress MU Domain Mapping
    • WP Maintenance Mode

    I was upgrading from BP Beta 2 and had no problems before. I am hosted on Linode and web server is Apache.

    modemlooper
    Moderator

    member search uses profile fields.

    Try this plugin not sure if it still works https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/

    #161235
    binarymoon
    Participant

    Thanks – that helps a bit I guess. I now understand why it’s there, but I’m not convinced it should be added to all fields by default. Perhaps there should be an option in the field setup screen.

    Thanks again for your help.

    #161179
    danbpfr
    Participant

    @blackmatarsak,

    1) of course, you paste the code after a php closing tag. You also pasted the very first line of the code  which is only my comment.

    Remove the closing tag and comment the line with two // or remove it, and things will go better.

    Aside, theme’s functions.php use only a php opening tag, never a closing tag ( ?> )

    2) can be easily done. See on Codex, profile fields and how to create new profile fields. It’s made on dashboard > users >profile settings

    #160424
    JusHerb
    Participant

    @enej (This is the only place I could reach you) I am building an Intranet on WordPress I have read about using various plugins that I can use to get the job done. I am interested in customizing the dashboard to fit my needs visually and navigation wise. However I am having a hard time really putting my finger on a good plan to get an employee directory and a client directory established in the dashboard area. I read up on your plugin, “profile CCT” I was wondering if it was capable of functioning this way. Each directory should have an area (Maybe the left tab bar area on dashboard) where each employee or client has his/her own profile. The profiles will have custom fields; documents (Word Doc or PDF) will need to be uploaded to some of the fields. An expiration date alert will need to a feature for those document fields too. The alerts for those fields should be sent to the admin on expiration. Any suggestions?

    azchipka
    Participant

    Ok so I managed to find a backwards way of doing it because I needed to be able to do the same thing. Your going to need two plugins.

    1. Your Preferred Role Management Plugin. I like Capacity Manager Enhanced
    2. Buddypress xProfiles ACL

    STEPS
    1. Use your role manager to create some new roles. Name them what ever you want.
    2. Go into the Users -> Profile Fields
    3. Create a Field Group for your Restricted Items (not the primary one).
    4. Go to the Settings -> xProfile ACL
    5. Put your Field Group that you only want the Admin to be able to edit for the admin only.
    6. Now this is important you need to modify the xProfile ACL php file (yes I know this makes it a hack, if xProfile ACL is updated you will lose this setting.)
    6a. Go to line 240 of the buddypress-xprofiles-acl.php file. Comment out lines 240 – 249, the code you are commenting out is:

    `
    function filter_xprofile_groups_with_acl() {
    global $bp, $profile_template, $current_user;
    get_currentuserinfo();
    foreach($profile_template->groups as $key => $profile_group) {
    if( ! in_array($profile_group->id, $this->user_allowed_xprofile_groups) ) {
    unset($profile_template->groups[$key]);
    }
    }
    }
    `

    6b. Below the code you just commented out add:
    ` function filter_xprofile_groups_with_acl() {}`

    7. Save your changes to the buddypress-xprofiles-acl.php file.

    8. Now when ever you need to modify the fields log in with your admin account navigate to the user profile in buddy press and select Edit Member Profile from the tool bar. You will see the fields from the private group. Users will see the fields but when they select edit they will not be displayed.

    Hope this helps.

    jimmy140
    Participant

    @Brendino,

    Looking to accomplish the same thing! I haven’t been able to find any good solutions either. If you come up with something please post!

    Jimmy

    #159893

    In reply to: Profile settings

    Ben Hansen
    Participant

    you need to add more fields to either “base” (unless you have renamed “base”) or you can also add new groups and add the new fields there.

    #159781

    In reply to: Add file to profile

    danbpfr
    Participant

    @pete-deane,

    the xprofile component offers all type of html forms fields, except upload box for security reason. This is simply not possible “as is”. The only thing you can do is to copy/paste an URL into a a single line textarea.

    Or invite your user to enter their CV into a multiline textarea. And copy/pasting a formated CV in this box will loose his formating.

    So there is no possibility at this time to join a separate document to a profile.

    See perhaps what you can do with bp group documents plugin.

    #159626
    rmdcron
    Participant

    Anyone have a solution to converting the vertical xprofile field database structure to a horizontal more efficient structure?

    I have 10 million entries in my xprofile_data table and my site crashes everytime i try to filter anything with ajax… very frustrting.

    i am going to extract the important xprofile fields and convert them to a horizontal database structure and point my search box to the new table.

    anyone done this before?

    #158825
    bp-help
    Participant

    Add this to your themes functions.php or bp-custom.php:
    `
    /*
    * Remove autolinks created in buddypress profiles
    */
    function remove_xprofile_links() {
    remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 );
    }
    add_action( ‘bp_init’, ‘remove_xprofile_links’ );
    `

    #158757

    In reply to: About Me Section

    @mercime
    Participant

    how can i have an “About me” section in the registration … keywords

    “About me” section like http://testbp.org/members/johnjamesjacoby/profile/ was done by creating a new Profile Field Group then adding xprofile fields for that group. As for keywords, you could create radio or multiple select boxes et al with defined keywords for members to choose from or create a text boxes with instructions to members to list interests separated by commas

    #158189

    In reply to: Friends only viewing

    @mercime
    Participant

    @danspeak12 what specifically are you looking for? xprofile fields can already be set by members to show publicly, for friends only, or for admin only. There’s a plugin to make activity streams show up for friends only https://buddypress.org/support/topic/buddypress-activity-for-self-and-friends-only/

    shortoldtree
    Participant

    Anyone?

    shortoldtree
    Participant

    I know I can add all fields to the ‘Base’ group so it all displays on the same page, but then it will also appear on the signup page which will make the signup page look huge.

    Is there anyway to add elements to the ‘Base’ group and not allow it to appear on the sign-up page?

    #156744
    andrew2scott2
    Participant

    After little help form here lol. I have found a way to let individual member write there own blog/article called Social Articles it a plugin for buddypress.

    As for youtube I have not still found one that you can have a youtube gallery for say.
    But I did find a active steam plugin that allow the uploads. And I also found other plugin that allow me to host the videos but I weighting the options at the moment on that.

    I did find a nice event plugin thanks to one of the other threads on here after i was digging through the post. So now it comes down to fins a way to custize the profile more than just the fields.

    #156737
    praisehim
    Participant

    Hi,

    I’m using BP 1.6.4, and the link doesn’t work for me to be able to turn off the linking. I still have the linking showing. Please advise.

    #156661
    Tanya
    Participant

    Unfortunately as that says nothing about the types of requests going to the Ajax file, it’s not very helpful.

    Is your site using an object cache?

    I’m not quite sure what an object cache is. If it helps, I am using CloudFare with my website.

    How do I find out what requests are going to the Ajax file?

    As for Ajax it is being used far too much, people don’t seem to get why it oughtn’t to be or when it’s even suitable to be used – people love gimmicks and that’s all Ajax is – even if I do like using it myself.

    I have disabled WordPress’ autosave in posts too, which I think uses ajax. As far as I’m aware, I haven’t put any ajax on my website, so I’m assuming the ajax calls must be from the plugins.

    My plugins, if this helps:
    – Advanced Custom Fields
    – Akismet
    – bbPress
    – bbPress Topics for Posts
    – BP Template Pack
    – BuddyPress
    – BuddyPress Custom Profile Menu
    – Custom Post Template
    – GD bbPress tools
    – Google Analyticator
    – Google XML Sitemaps
    – Restrict Content Pro
    – Use Google Libraries
    – WordPress Backup to Dropbox
    – WP Minify

    I’m going to try and move it to the Virtual Server on MT.

    #156348
    Hugo Ashmore
    Participant

    Not sure what your issue is here, create a new profile field with a select drop down then start adding the 202 countries as option fields, set it as required and ensure it’s in the base group so it shows on the register page. On members display you can then check the profile field to see what selection a user has.

    #155806
    danbpfr
    Participant

    hi @jmetzger631

    Assuming you used xprofile component to do so.

    You have to enter the correct profile field name. This means the name, in fact the field title, you entered when you create the profile field.

    Probably “Company” or “Your company” or something readable for your public.

    In BP 1.7/bp-default/members/members-loop.php:67 there is an example who explains this too.

    /***
    * If you want to show specific profile fields here you can,
    * but it’ll add an extra query for each member in the loop
    * (only one regardless of the number of fields you show):
    *
    * bp_member_profile_data( ‘field=the field name’ );
    */

    You can also create a function to insert a do_action in the members-loop.

    In the function, intented to work outside of the profile loop, you need the user id and the xprofile data

    $user_id=bp_get_member_user_id();
    $anything = xprofile_get_field_data (‘the_field_name’, $user_id);
    echo $anything;

    add_action ( ‘a_name_of_your_choice’, ‘your_function_name’)

    and somewhere in the loop, do_action( ‘a_name_of_your_choice’ )

     

     

    #155785
    bp-help
    Participant

    @inkblots Thank you for your input. I guess I just feel that when the profile fields privacy options was introduced in BP 1.6 it seems like it would have made sense to have activity stream privacy as well. Whether its used or not it would make more sense because if you don’t want non friends seeing your profile then you probably don’t want them seeing your posts in the activity stream either. I wish the activity stream would have another scope so you could see your friends and your own activities in the stream only. Never the less I am grateful for the hard all the hard work the core team has done thus far. I guess we always don’t get everything we want in life though but thanks again!

Viewing 25 results - 1,651 through 1,675 (of 3,594 total)
Skip to toolbar