Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 401 through 425 (of 3,608 total)
  • Author
    Search Results
  • #302738
    easybwpacc
    Participant

    Solved go to users > profile fields > add fields as needed

    #302546
    josh.grisdale
    Participant

    Hi,

    I’m not really a programmer and just hacked together some stuff I found…

    but,

    First of all I assume that xprofile_get_field_data only gets feilds in the Extended Profile tab of the user, so you would either need to add those fields to the Extended Profile, or you would need another wordpress function to get it from the regular profile likely

    $current_user->user_firstname (https://codex.wordpress.org/Function_Reference/wp_get_current_user)

    $newname = $current_user->user_firstname . $current_user->user_lastname;

    I would guess…

    #302495
    egamestudio
    Participant

    Hello,

    This is my problem, I use ACF PRO to create my own fields on my WordPress theme, for the member profiles part everything works with this code:

    <?php
    /**
     * BuddyPress - Members Settings ( General )
     *
     * @since 3.0.0
     * @version 3.1.0
     */
    acf_form_head ();
    $author_id = bp_displayed_user_id();
    ?>
        <div class="col-lg-6">
            <?php
            acf_form(array(
    
                'id' => 'acf-formA',    
    
                /* Groupe de champs ID utilisé */
                'field_groups' => array('663'), //CHANGE ID IN LIVE
    
                /* Quelle est la function meta utiliser en $ sur ID auteur ? */    
                'post_id' => 'user_'.$author_id,
    
                /* Quel est le nom sur le bouton du button de sauvegarde */    
                'submit_value' => __("SAUVEGARDER", 'acf'),
    
                /* Le message que je retourne en cas de réussite sur l'infobox bootstrap */
                'updated_message' => __("Mise à jour réalisée", 'acf'),   
    
                /* Button de submit de formulaire */
                'html_submit_button'	=> '<div class="text-center"><input name="updateuser1" type="submit" id="updateuser1" class="btn-style1" value="%s" /></div>',
    
                /* Le spinner de chargement */
                'html_submit_spinner'	=> '<span class="acf-spinner"></span>',
                'form' => true,
                'return' => ''
            ));
            add_action('acf/save_post', 'my_acf_save_post', 20);
            ?> 
        </div>
    

    So far no problem to display then on the member’s profile page the information of the ACF field.

    My Problem:
    On the other hand, on the Groups part I can’t find how to attach the field to the ID group, that’s what I tried.

    In my edit-details.php (in group),My field works, I enter test in my acf form
    it comes out in the echo “test” but on all the groups, I can’t associate this field with the group id.

    <?php
    /**
     * BP Nouveau Group's edit details template.
     *
     * @since 3.0.0
     * @version 3.1.0
     * @version 4.0.0 Removed 'Notify group members' checkbox in favor of hooked callback.
     */
    acf_form_head ();
            
    $group_id = bp_displayed_user_id();
    $group = new BP_Groups_Group( $group_id );
    
    ?>
    <?php echo get_field('test_group', 'group_'. $group_id); ?>
    
         <?php
                acf_form(array(
    
                    'id' => 'acf-formA',    
    
                    /* Groupe de champs ID utilisé */
                    'field_groups' => array('714'), //CHANGE ID IN LIVE
    
                    /* Quelle est la function meta utiliser en $ sur ID auteur ? */    
                    'post_id' => 'group_'.$group_id,
    
                    /* Quel est le nom sur le bouton du button de sauvegarde */    
                    'submit_value' => __("SAUVEGARDER", 'acf'),
    
                    /* Le message que je retourne en cas de réussite sur l'infobox bootstrap */
                    'updated_message' => __("Mise à jour réalisée", 'acf'),   
    
                    /* Button de submit de formulaire */
                    'html_submit_button'	=> '<div class="text-center"><input name="updateuser1" type="submit" id="updateuser1" class="btn-style1" value="%s" /></div>',
    
                    /* Le spinner de chargement */
                    'html_submit_spinner'	=> '<span class="acf-spinner"></span>',
                    'form' => true,
                    'return' => ''
                ));
                add_action('acf/save_post', 'my_acf_save_post', 20);
                ?> 

    Thanks for your help !
    demo : https://cryodev.fr/branch/build/alpha/groupes/le-groupe-a-demo/

    #302488
    MorgunovVit
    Participant

    Hi, Josh!
    I am trying to solve a similar problem, but only I need to make the display_name = First_Name + Last_Name fields of the BuddyPress xprofile.

    I have been tormenting for a long time and can’t find a suitable hook that firing when the xprofile fields First_Name and Last_Name have already been written in the database.

    #302483
    mbamutuelle
    Participant

    Hello,

    Can you help me for hiding the “Modify” button on a member page.
    I Don’t want that my members can change their profile by themself because all fields are automaticly feed by an LDAP authentication.
    Before updating my Woffice theme, i just have to comment some lines of this file :
    /home/wordpress/wp-content/themes/woffice/buddypress/members/single/profile.php

    // Edit
    //case ‘edit’ :
    // bp_get_template_part( ‘members/single/profile/edit’ );
    // break;

    But now i Don’t find where i can hide this button for my suscribers.

    Can you try to help me please ?
    Thx

    #302466
    Number_6
    Participant

    Hello,
    I’m looking to create widgets specifically for profile pages. For that I need a way to get the ID/display name of the current profile being viewed.
    In plain English: User 1 views their own profile and sees data in widgets relative to their own profile.
    User 2 views User 1’s profile and sees data in widgets relative to User 1’s profile.
    Example: Custom post types they’ve authored or data from their custom profile fields.

    For that I need to fetch the ID/Display Name of the currently viewed profile page.

    Thanks

    #302465
    shanebp
    Moderator

    The easiest approach, imo, would be to remove the current member search input from the members directory.
    For example, create an overload of this file and delete the code re member search:
    buddypress\bp-templates\bp-legacy\buddypress\members\index.php

    Then get this plugin: BP Profile Search
    And configure a custom member search that only includes the fields you want.

    bitroger
    Participant

    I have many custom profile and need hide some from VIEW option profile, can you help me please???

    I have a field called “user available”
    How do I hide the other fields when I select the option “NO” in the user’s data view?

    #302438
    msteimann
    Participant

    Thanks for your quick reply, Venutius!

    I have tried the WP 2015 Theme and got the same results. So I switched back to KLEO and noticed, that the xProfile fields do change to the desired visibility settings, AFTER the user clicks the SAVE SETTINGS button. So I guess I was confused by the fact that BEFORE you hit the save button there is a misleading visual feedback (the visibility term does not alter to the according setting the user has just changed it to, it still displays the same value as before).

    Could this be changed in the next release?

    My first problem still remains: the „change display name visibility option“ is displayed beneath the name field on the user Registration page. This doesn’t make sense, if the name’s visibility throughout BuddyPress network is mandatory. How can I get rid of this line? Does this line and it’s user changeable visibility options really not appear on a default install?

    In the WP Dashboard I cannot change the options for the primary Name field. Only the fields under the details tab can be altered by admin and set to be visibility-changeable by the user. (Hope you understand what I try to say 😉

    Regards,
    Martin

    Hide visibility option on registration page?

    #302434
    Venutius
    Moderator

    On a default install there is no option to change the visibility of the Name field, it is always visible to all. Other profile fields can have this setting changed and it works. I suggest you try switching to a default theme such as 2015 and see if you still have the issue.

    #302413
    meriping
    Participant

    Hi,
    I am using BuddyPress v4.1.0 and WordPress v5.0.3

    I need to two different profile fields in the same line.
    For instance I have a field that is called Instrument and other than is Level. In the profile it shows in two different lines
    Instrument Guitar
    Level Advance
    What I need is to display both fields in the same line
    Instrument Guitar Level Advance

    Is that possible?

    Thank you

    #302382
    mrbluesea
    Participant

    you can edit the fields of custom registration in profile fields. Does this help at all?

    #302328
    tindere
    Participant

    Hi
    I’m trying open a new tab when clicking on our terms of use – Profile extra registration Field. But when I put in the target=”_blank” on the link and saves it is gone after the save.
    The website is this: https://testlearn.blueworkforce.com/register/
    Is there another way to add a _blank to the here link instead of linking to the same window. The user information will be gone else when you go back to the registration page.

    I have found this https://buddypress.org/support/topic/profile-fields-open-url-in-new-tab-_blank/
    But couldn’t get it to work.

    shanebp
    Moderator

    – Responsive on all devices
    Yes.

    – Users to be able to pay for messaging and/or subscription
    No, requires a membership plugin.

    – User should be able to register, to have public and private profile also public and private photos.
    Register, yes. Profiles are public unless you add custom code. Photos gallery requires custom code or there may be a third-party plugin.

    – Users to be able to edit and add custom fields on their profile page
    Yes.

    – Admin should also be able to edit those fields/profile pages
    Yes.

    – Users to be able to filter search results, based on those fields
    Yes, by using the BP Profile Search plugin

    – IP Geo detection function? Showing users in your area?
    No. Requires custom coding or perhaps a third-party plugin.

    – Multilanguage support.
    Yes.

    – Are gifts or badges also available/active, which are to be given on a subscription or user rank basis?
    No, maybe a third-party plugin.

    – Any performance issues? Browsing experience should be smooth.
    Depends on your hosting resources and the number of active users.

    knigolubtomov123
    Participant

    Hi There,

    I am looking for a CMS template to build a simple social/dating website. I was wondering if BuddyPress supports the following features/functionalities:
    – Responsive on all devices
    – Users to be able to pay for messaging and/or subscription
    – User should be able to register, to have public and private profile also public and private photos.
    – Users to be able to edit and add custom fields on their profile page
    – Admin should also be able to edit those fields/profile pages
    – Users to be able to filter search results, based on those fields
    – IP Geo detection function? Showing users in your area?
    – Multilanguage support.
    – Are gifts or badges also available/active, which are to be given on a subscription or user rank basis?
    – Any performance issues? Browsing experience should be smooth.
    Thank you so much in advance.
    I am open to suggestions, if you think that this particular CMS is not appropriate for this.

    #302171
    sedmikraska
    Participant

    I want all profile fields to be visible on my site. So I want to remove the subnav Settings > Profile Visibility.

    I have added below command into bp-custom.php but it does not work.

    function bpfr_hide_visibility_tab() {
    if( bp_is_active( ‘xprofile’ ) )

    bp_core_remove_subnav_item( ‘settings’, ‘profile’ );

    }
    add_action( ‘bp_ready’, ‘bpfr_hide_visibility_tab’ );

    Something has changed probably because the conversation I found about this issue is two years old.

    Could you please let me know updated command that I have to use ?

    WordPress: 5.0.3–sk_SK
    BuddyPress: 4.1.0
    mamatwist.com

    Thank you,
    Dana

    #302161
    webusat
    Participant

    Hi,

    I am trying to place information from certain profile fields in the sidebar whenever a persons profile is displayed. I think I also want to to stay there in the sidebar as long as a user is viewing that profile. Anyhow, I can get it to display and work like that except for the formatting. No matter how the users fills in that data using the WYSIWYG editor it all runs together. Here is the code I am using:

    $profile = bp_get_profile_field_data('city partners');
    
    if ( !empty($data) && strlen($data) > 0 ) {
      echo "<h4>City Resources</h4>";
      echo $profile;
    }

    It displays all together like this:
    City Hall Ut et dui pulvinar diam suscipit cursus. Nulla est tellus, rutrum non euismod nec, rutrum et ligula. Etiam eget nunc congue, convallis dolor eget, volutpat arcu. Sed velit tellus, pretium eu ante eu, auctor laoreet sapien. Gramercy Park Suspendisse sollicitudin tempus mauris, quis sollicitudin nisi euismod ac. Sed sit amet tincidunt nibh. Aenean non magna mauris. Link here

    or if a single line it all just runs together. In the body of the profile page it looks like it does in the editor and how it should with the formatting:
    City Hall

    Ut et dui pulvinar diam suscipit cursus. Nulla est tellus, rutrum non euismod nec, rutrum et ligula. Etiam eget nunc congue, convallis dolor eget, volutpat arcu. Sed velit tellus, pretium eu ante eu, auctor laoreet sapien.

    Gramercy Park

    Suspendisse sollicitudin tempus mauris, quis sollicitudin nisi euismod ac. Sed sit amet tincidunt nibh. Aenean non magna mauris. Link here

    ———-

    All nice and neat which is how I want it. How can I keep the formatting, spacing, line breaks, etc.?

    Thanks,
    Stan

    I am running the BuddyPress 4.1.0 and WP 4.4.9.

    #302113
    Wushan TCM
    Participant

    No, that didnt worked.
    Ok like this: I added next to the primary, a new field called Profile fields: You can find it here: https://wushantcm.com/members/timvukan/profile/
    In the backend I added to the field group:
    -My Name:
    -Profession
    -Working Experience
    but, only the field
    -Profession is visuable in the frontend on the profile page

    #302110
    Wushan TCM
    Participant

    Hi there,
    thank you for getting back to my request. I am following this issue. I just tried again to add new fields to a profile group but they are not showing. It is correct that they show below the other profiel fields, but they wont appear, just a part of it, but not complete as I have it in my backend dashboard.

    #302032
    Venutius
    Moderator

    I’ve just looked at a test server and I’m getting the same issue. If I edit the profile I can see the extra tab and edit the profile fields it contains, but when I view the profile it only shows the Base profile group.

    Would you mind rasing this as a bug on trac?

    #302025
    Wushan TCM
    Participant

    I am seeing different tabs I can add as other profile fields in the backend but they dont appear on my profile page. I am using the Boss Theme of Buddy Boss. All other functions are working fine.

    Wushan TCM
    Participant

    Hello, I am trying to add additional Extended User Profile Fields in the backend but they dont show up on my profile page. I am using BuddyPress 4.1.0 as well as Buddy Boss Boss Theme, Wall plugin etc. The primary Profile fields are visuable on my Profile page members/user/profile/ but if I try to add a new field group and add a new field it doesnt show up on my page. MY WordPress version is 5.0.2 and all other plugins are also updated to the latest version. I installed Twenty Nineteen Theme by WordPress but still the same issue. My website is: https://wushantcm.com

    #283003
    Melanie Jimenez
    Participant

    Mean you don’t know how 🙂
    members/bps-form-home – located in: /buddypress/ Should I ask then support from OpenCart Or Magento if this is not an issue of BuddyPress
    And maybe Extended Profiles (Customize your community with fully editable profile fields that allow your users to describe themselves.) is not a part of BuddyPress too? Because only the gender got wrong search results – and this is BuddyPress Profile Field

    shanebp
    Moderator

    afaik, when that hook runs, the user is not logged in yet. Try using a login hook, like login_redirect.
    btw – try to use BP functions, especially if you plan to distribute your code.
    wp_redirect( bp_loggedin_user_domain() . '/profile/edit/group/1/' );

    The default component constant applies to all visitors. Visitors and other members cannot edit the profile fields of another user.

    #282688
    meriping
    Participant

    Hi,
    Hope you can help me with this.
    I have created different member types with BuddyPress Member Type Generator. Each member type is associated to a group of profile fields. One user can have more than one member type.
    How can I hide the groups that are not associated to the member type/s of the user?
    Thanks

Viewing 25 results - 401 through 425 (of 3,608 total)
Skip to toolbar