Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 3,801 through 3,825 (of 5,698 total)
  • Author
    Search Results
  • Hysteriux
    Member

    I’m wondering if there’s some way that i can change the link that the Profile button within a user page in BP 1.5 leads to. The plugin in i’m trying to make it lead to is Simple:Press’ profile for the user whom’s BP user page you’re viewing. This would also go for the Profile link in the WP toolbar at the top of the website.
    I want to do this since i don’t want to have multiple pages of profile-fields for each user and Simple:Press already has a bunch of good profile fields that BP doesn’t.

    #126941
    Quint
    Participant

    This may get you part of the way there:

    BuddyPress Custom Background For User Profile

    #126939
    yadigit
    Participant

    Im trying to do the same thing, this is a code that im using to config to something just like it.
    Instead im using it to over lay the whole background of the users profile ( just a quick fix for privacy settings ) But for some reason it isn’t working like i wanted it too.. ( nor is it working at all ) Maybe you could use this in hopes it could lead you to your answer. Once again this is not a answer to your question, its just a code to help you get started.

    `

    Set to Private!

    `

    Ps. Let me if this helps and if you found a fix for it.

    #126837
    Lindsayannb
    Member

    I think that is the default way that BP works.. (unless you have some addon).. I have found an addon called Custom Profile Filters for BuddyPress which lets you selectively create links so that you can make all fields not links except for maybe twitter usernames, or account type, etc.

    #26463
    seravifer
    Member

    I want the users profile tab disappears but the option to change avatar aparezca en otra pagina distinta del perfil de usuario. In profile form of the “theme my login plugin”.

    <?php

    $GLOBALS = $current_user = wp_get_current_user();
    $GLOBALS = $profileuser = get_user_to_edit( $current_user->ID );

    $user_can_edit = false;
    foreach ( array( ‘posts’, ‘pages’ ) as $post_cap )
    $user_can_edit |= current_user_can( “edit_$post_cap” );
    ?>

    <div class="login profile" id="theme-my-loginthe_instance(); ?>”>
    the_action_template_message( ‘profile’ ); ?>
    the_errors(); ?>

    ID ) ?>

    <input type="hidden" name="checkuser_id" value="ID; ?>” />

    <input type="text" name="user_login" id="user_login" value="user_login ); ?>” disabled=”disabled” class=”regular-text” />
    <input type="text" name="first_name" id="first_name" value="first_name ) ?>” class=”regular-text” />
    <input type="text" name="last_name" id="last_name" value="last_name ) ?>” class=”regular-text” />
    <input type="text" name="nickname" id="nickname" value="nickname ) ?>” class=”regular-text” />

    <?php
    $public_display = array();
    $public_display = $profileuser->nickname;
    $public_display = $profileuser->user_login;
    if ( !empty( $profileuser->first_name ) )
    $public_display = $profileuser->first_name;
    if ( !empty( $profileuser->last_name ) )
    $public_display = $profileuser->last_name;
    if ( !empty( $profileuser->first_name ) && !empty( $profileuser->last_name ) ) {
    $public_display = $profileuser->first_name . ‘ ‘ . $profileuser->last_name;
    $public_display = $profileuser->last_name . ‘ ‘ . $profileuser->first_name;
    }
    if ( !in_array( $profileuser->display_name, $public_display ) )// Only add this if it isn’t duplicated elsewhere
    $public_display = array( ‘display_displayname’ => $profileuser->display_name ) + $public_display;
    $public_display = array_map( ‘trim’, $public_display );
    foreach ( $public_display as $id => $item ) {
    $selected = ( $profileuser->display_name == $item ) ? ‘ selected=”selected”‘ : ”;
    ?>
    <option id="” value=””>

    <input type="text" name="email" id="email" value="user_email ) ?>” class=”regular-text” />
    <input type="text" name="url" id="url" value="user_url ) ?>” class=”regular-text code” />

    <?php
    $show_password_fields = apply_filters( ‘show_password_fields’, true, $profileuser );
    if ( $show_password_fields ) :
    ?>

    <?php
    do_action( ‘show_user_profile’, $profileuser );
    ?>

    caps ) > count( $profileuser->roles ) && apply_filters( ‘additional_capabilities_display’, true, $profileuser ) ) { ?>

    <?php
    $output = ”;
    global $wp_roles;
    foreach ( $profileuser->caps as $cap => $value ) {
    if ( !$wp_roles->is_role( $cap ) ) {
    if ( $output != ” )
    $output .= ‘, ‘;
    $output .= $value ? $cap : “Denied: {$cap}”;
    }
    }
    echo $output;
    ?>

    <input type="hidden" name="user_id" id="user_id" value="ID ); ?>” />
    <input type="submit" class="button-primary" value="” name=”submit” />

    This code has to work in the code above:

    <?php _e( 'Your avatar will be used on your profile and throughout the site. If there is a Gravatar associated with your account email we will use that, or you can upload an image from your computer.’, ‘buddypress’) ?>

    <input type="submit" name="upload" id="upload" value="” />

    <a class="button edit" href="” title=””>

    <img src="” id=”avatar-to-crop” class=”avatar” alt=”” />

    <img src="” id=”avatar-crop-preview” class=”avatar” alt=”” />

    <input type="submit" name="avatar-crop-submit" id="avatar-crop-submit" value="” />

    <input type="hidden" name="image_src" id="image_src" value="” />

    <?php _e( 'Your avatar will be used on your profile and throughout the site. To change your avatar, please create an account with Gravatar using the same email address as you used to register with this site.’, ‘buddypress’ ) ?>

    How?

    #26459
    yadigit
    Participant

    Im trying to change the slug to the edit profile fields
    from: http://www.mysite.com/members/admin/edit/1
    to: /editprofile/1

    But the issue im having is that the fields are not displaying..
    I hope I gave enough details?
    Any ideas?

    #26458
    yadigit
    Participant

    For a few days now I’ve been trying to take the “edit profile fields” out of the users profile page and move them into a custom template page… So far I had no luck.
    I searched around hoping to find an answer. I hope someone here could help me.

    I took the edit.php, profile.php, home.php files and searched through them hoping to find the edit profile template. Nothing seems to work for me at all.

    Any one have any ideas? is it something inside of the xprofile?

    `locate_template( array( ‘members/single/settings.php’ ), true );`

    I hope I can find an answer.. =D

    #26401
    prashank
    Member

    Hi! friends,
    I am very new to Buddypress. I have problems in my installation. I installed wordpress 3.3 and installed Buddypress from the inbuilt plugin installer. I installed Custom community theme but when i try to create profile fields or groups on the site i got “There was an error saving group details, please try again.”. I have read somewhere that there is a table in mysql database for BP but looks like i don’t have one. I have 11 tables with wp_ table prefix but no BP table. I used softaculous to install WP. Is that true that there is no table for BP and have to manually install WP?

    Thanks for any help.

    #126511
    Boone Gorges
    Keymaster

    The core reason why it’s difficult to do infinite filters like this is because BP xprofile fields are abstracted. That is to say, in order for our profile fields to be extensible (so that your site can have different profile fields from mine) we have moved the profile data to a separate table, which is essentially a key-value table. This is in contrast to a solution where you store all profile data in a single table, making it very easy and fast to filter by many criteria at once (the trade-off being that the table structure needs to be set in stone).

    The numbers you cite shouldn’t be much of a problem. You may experience some slowness if you try filtering along 7, 8, 9 criteria at the same time, though I suspect that this is probably an edge case. In any case, some solid MySQL query caching will help.

    bojanski
    Member

    Hi Guys

    Any help would be highly appreciated.
    Thanks
    Bojan

    applegateian
    Participant

    Hi….

    I’m trying to add various fields to the default members directory /members

    By default it’s showing the avatar, username and last time active. I’ve hidden the last field but want to add additional content from the users extended profile fields.

    I have this working in other areas of the site but when I try and add to the members-loop.php file the standard bp_profile_field_data it shows nothing.

    any solutions?

    Thanks,

    Ian

    #14661
    robpachasa
    Member

    I’m looking to have users put links to their networks on their profile fields where the links will display in images instead of the ugly links.

    Can anyone direct me?

    #126155
    freque.unce
    Participant

    I changed register.php to display profile group 3 (optional profile fields I added via dash) instead of 1, to hide the required displayname option on signup, which forces it to clone username data by default. I then removed the ability to change names in xprofiles’ edit.php (with if/else, statements on textbox & submit button for profile group 1).

    Those 2 steps take care of all future occurances, so I then went in and changed all of my existing users’ display names to match their usernames, manually, via the dashboard.

    Problem solved. More of a substitute than a removal, but it works for me. Hopefully someone will find this useful.

    Angie
    Participant

    hi everyone,

    i m using latest buddypress version + geo mashup mapping plugin. I’m trying to find a way to add geo mashup location field in the bpress extended profile, fields, so that users can put in their location address in the bpress sign up page, and also hoping to get that user’s location map displayed in the user profile page.

    i,ve been looking thru a lot of forums on the internet, and still can’t find the solution.any suggestion/help would be highly appreciated!

    #126080
    @mercime
    Keymaster

    First, you should enable registration in admin dashboard menu Settings > General

    Capture more data from user by adding more profile fields. See Extended Profile fields https://codex.buddypress.org/getting-started/configure-buddypress-components/

    #125931
    Brimfulof
    Participant

    It’s actually pretty simple. It’s explained very briefly in the plugin’s installation page: https://wordpress.org/extend/plugins/bp-export-users/installation/

    Step-by-step:
    1. Download the plugin to your computer.
    2. Unzip it and open the file bp-export-users.php in a text editor (notepad, notepad++, gedit, etc.)
    3. Find these lines:
    $this->wp_fields = array(
    'ID',
    'user_login',
    #'user_pass',
    'user_nicename',
    'user_email',
    'user_url',
    'user_registered',
    #'user_activation_key',
    'user_status',
    'display_name',
    'spam',
    'deleted');

    4. Add the names of any custom WordPress user fields you want in ‘inverted commas’ before the closing bracket ) making sure you put a comma in between the fields. E.g. ‘deleted’, ‘custom field’, ‘custom field2’)
    5. Find the lines:
    $this->bp_fields = array(
    'Name',
    'Telephone',
    'Job Title',
    'Organisation',
    'Region',
    'Primary Discipline',
    'Grade',
    'A bit about you',
    'twitter',
    'flickr');

    6. Add the names of any custom BuddyPress (xProfile) fields you want to export in the same way.
    7. Save the file.
    8. Zip the folder.
    9. Install the plugin in your WordPress installation using the upload method.
    And you should be away.

    #26204
    InHouse
    Member

    Hi, I’ve been searching the Codex and forum but I can’t figure out how to list my members by category. I’m currently using Extended Profile Fields to make each member choose a category from a drop down list. I can’t figure out how to display 1 category of members.

    Is it better to partition the members in Groups instead? If so, how would I show 1 group on a page or maybe 2-3 groups? I’m using this to build a site for a chamber of commerce type of entity so each member should be placed into a category. On 1 page I might display members who are “Restaurants” for instance.

    Thanks for any advise.

    #26203
    enderpal444
    Participant

    I want to allow my authors to add their social media links (twitter,facebook) to their profile and then I want to be able to call those links in things like their posts. I know how to add new fields to the profiles but how can I call them?

    #125763
    InHouse
    Member

    I may be way off from what your issue is, but I’m using the plugin Extended Profile Fields to make my new members fill in more information. Anything you create in the “base” group will appear on the signup page.

    #125734
    T3Kaos
    Member

    DOES NO ONE ANSWER ANYTHING ON HERE ANYMORE?

    seointexas
    Member

    I need to add a unique ( number ) field, that auto increments, like the ID does in mySql. Of course instead of the user being able to choose their own option like they do for the other fields (name, etc.), this would autogenerate, then show up on their member profile as a field, along with name, email, etc.
    Can I or should I use the db id? If so, how would I do that? Thanks!

    #26140
    peterbujok
    Member

    I need help creating a profile plugin that pulls the Skype ID from a users profile fields and creates a hyperlink to that user’s Skype with a Call function, Add to Skype function, Chat function, and Profile function. You can find the hyperlink to skype info here: http://shareourideas.com/2010/01/24/embed-skype/

    #125675

    In reply to: Custom fields

    @mercime
    Keymaster
    ninjojo
    Member

    So I had a few custom profile fields (set in buddypress), and whenever I tried to test out updating the info in those fields, I’d get the error in big red at the top:
    “There was a problem updating some of your profile information, please try again.”

    Tried:
    – removing ‘required’ on all fields (except First Name)
    – removing ALL fields except First Name

    Same result. No matter what, it triggers the $errors flag in “bp-xprofile-screens.php” here (around line 101):

    if ( !xprofile_set_field_data( $field_id, $bp->displayed_user->id, $value, $is_required[$field_id] ) )

    The weird thing is, that even though the error flag is being triggered, the information I enter on the profile screen is still saved.

    Any ideas?

    I’m using BP 1.5.1 and Buddypress Template Pack 1.2

    #26110
    peterbujok
    Member

    Hello, I am kind of at a loss as to why the WordPress user fields do not show up under the buddypress user profile and vice versa. What do I do to link the two? Sorry if this is not very specific.

Viewing 25 results - 3,801 through 3,825 (of 5,698 total)
Skip to toolbar