Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 101 through 125 (of 3,615 total)
  • Author
    Search Results
  • #324962
    nanomania
    Participant

    Hello, could someone help me? I need to hide some profile fields, for example name and surname, I want users to not be able to see those profile fields when they visit other profiles, I want only the owner of their account to see it, greetings!

    #324622
    nystao
    Participant

    Hey Robson,

    I found a Plugin which fits perfectly to my needs.

    BuddyPress Non Editable Profile Fields

    Best

    #324441
    Anonymous User 18187419
    Inactive

    Hi,

    WP Admin > Users > Profile Fields

    Two buttons near top, “Add new field / Edit Group”

    Select Edit Group

    You can the change the title (Base) to anything you want, or to make it blank then a space ” ” will work.

    jumling
    Participant

    Hey Guys,

    New to BP. Latest versions of WP/BP all active.

    I’ve noticed when a new user registers, activates, then logs in: That various profile data such as:

    *Real Name
    *Bio
    *Hobbies etc
    *Other fields

    Are all pre populated with the same dummy info.
    I see no options in the settings to stop this from happening: e.g: Leave it blank.

    I do see the datafields in phpmyadmin though. Deleting these from the DB, is this the right way to stop blank fields being populated?

    Cheers

    #324294
    tazar64
    Participant

    Hi

    How can I find the meta names of the extra fields on the extended profile? I create extra fields but I don’t know their names, just id and group_id.
    I need meta names so I can use other plugins for registration, for example, or for PODS.
    By the way, PODS doesn’t seem to see the extended profile fields anywhere…

    #324170
    danielasanhueza
    Participant

    Hey, so i am trying to add a filter in the members search to only show the profiles that have a certain role in an Xprofile field, doing some research i came across the next code

    if ( !defined( 'ABSPATH' ) ) exit;
     
    class BP_Loop_Filters {
     
        /**
         * Constructor
         */
        public function __construct() {
            $this->setup_actions();
        }
     
    
        private function setup_actions() {
    
            add_action( 'bp_members_directory_order_options', array( $this, 'random_order' ) );
     
    
            if( bp_is_active( 'groups' ) )
                add_action( 'bp_groups_directory_order_options',  array( $this, 'random_order' ) );
     
    
            if( is_multisite() && bp_is_active( 'blogs' ) )
                add_action( 'bp_blogs_directory_order_options',   array( $this, 'random_order' ) );
        }
     
    
        public function random_order() {
            ?>
            <option value="random"><?php _e( 'Random', 'buddypress' ); ?></option>
            <?php
        }
     
    }
     
    function bp_loop_filters() {
        return new BP_Loop_Filters();
    }
     
    add_action( 'bp_include', 'bp_loop_filters' );

    i tried adjusting it to call the Xprofile fields i want but it caused a complete error on the website, any help?

    #324136
    epgb101
    Participant

    UPDATE (semi-fixed) – I turned off ALL fields under Profile Fields > Signup Fields except default First Name and now signup worked again. So I guess its a process of elimination to see which signup field has some wrong setting. Hope that helps someone out there.

    #324001
    shanebp
    Moderator

    These are the forums for BuddyPRESS.
    You could ask BuddyBoss about it.
    Even better – contact the creators of the Conditional Profile Fields plugin.

    #324000
    brhoom
    Participant

    I have created “Professional Experience” repeater field set and inside it I created :

    • current job (yes or no)
    • end date (date) hide when current job is yes

    The issue is when I edit the profile the end date hid only in the first field not working on other fields. Also, it’s not working at all when I view the profile.
    Does anyone have a solution, please?

    BuddyBoss Platform Pro v 1.2.0
    Conditional Profile Fields for BuddyPress v 1.2.5
    BuddyBoss Theme v 1.8.7

    #323753
    freya
    Participant

    Hello,
    I have a repeater fieldset with ‘Website’ and ‘URL’ field.
    Here is my current code to display the datas (it’s within a while loop):

    <?php if ( bp_field_has_data() ) : ?>
    <?php echo bp_get_the_profile_field_value(); ?>
    <?php endif; ?>

    At the moment the datas are displayed like this:

    <p>Website name #1<p>
    <p>URL #1<p>
    <p>Website name #2<p>
    <p>URL #2<p>
    ...

    There is some formatting with <p> and added + I would like to get separate datas.
    I searched all over the forums, tried a lot of ways, I can’t find a solution.
    Could you please help me find a way to get the raw datas?
    Thank you!

    #323709
    dmcsupport
    Participant

    Hi David,

    Thank you for your reply.

    There’s no button as “Save Changes”. Only “View Profile” and “Update Profile” are available when using BuddyPress plugins to show an extra “Extended Profile” tab in WordPress User to show additional fields. Please see the google drive link shared below for a screenshot. https://drive.google.com/file/d/1u7gIzdV2Jt6MCC76czQO_s87bZxOSXP9/view

    #323683
    menni50
    Participant

    Can I use any registration form plugin to create a members registration form? If the answer is positive, How can the values from the compatible custom fields of group, group type, and user type, are set to the WordPress user profile? Is it possible to create groups from the frontend by registered users?

    #323673
    dmcsupport
    Participant

    Hi,
    From extended profile tab, once I made changes in the fields and then clicking “Update Profile” button from right side top bar, nothing happens and the changes does not save. Any idea what might be the reason behind this problem?

    #323413

    In reply to: Xprofile field

    shanebp
    Moderator

    If you mean as an input, then it would be easier to add a JobTitle xprofile field.
    You could write some code to sync the WP field with a BP field.
    Or there are plugins in the repo that claim to sync those fields.

    #323410
    welsh10
    Participant

    Hello,

    I’m using BB. I want to show custom fields on the profile page.
    How can I show the following data on the profile?

    $jobtitle = get_user_meta( $user_id, 'JobTitle', true);

    I prefer to add a custom function, than use an extra plugin

    Thanks

    #323406
    maryreyes
    Participant

    Anyone? Everything I’m finding in the documentation discusses changing the profile fields, not how the profile is displayed. I want to change the screen layout of the profile.

    #323175
    shokuhi
    Participant

    Hi.

    I made custom profile fields on “Users”.
    In “Multi fields” of sort order “Custom” does not work.

    Only working “Ascending” and “Descending”.
    I can not find the way of fixing it.

    Please someone tell me how to fix it.

    Shokuhi

    Anonymous User 18404156
    Inactive

    hi, i have removed buddypress. how can i remove instagram-profil-url, myspace-profil-url and other social url’s from database?

    i don’t want my customer to add their social links on their profile.

    thank you

    #323023
    Mike Witt
    Participant

    If I understand what you’re asking, you should be able to add profile fields in the WordPress Dashboard under Users->Profile Fields. As long as you set “Visibility” to Everyone, then I believe that Buddypress will display those fields in the person’s profile.

    #322861
    maelscuttle
    Participant

    Since this is months old, I’ve already settled back then with the plugin “BuddyPress to WordPress Full Sync” which allows me to sync any arbitary xProfile fields to WordPress fields.


    @imath
    I can confirm by now this works as expected when following your steps. Without being able to verify anymore what my problem was back then, I have a feeling this must have been related to validation as sometimes BuddyPress provides zero feedback when something was wrong. In my current WordPress version (5.8.3), the Twitter field is expected to be a simple username (not full URL / @), other fields like Instagram are expected to be the full URL. So perhaps the issue was that some fields didn’t match validation criteria, so BuddyPress just silently swallowed the input?

    Cheers

    #322849
    djsteveb
    Participant

    when filling out register form it just refreshes the page – seems to fail with no error message I can see.
    How would I find out what is happening in the browser and on the server to debug?

    tried with turning off plugins and back to default theme,
    also did the list of things to check from here:
    (
    – check the WordPress settings allows account to be created (Anyone can register checkbox needs to be active) See: wordpress.org/support/article/settings-general-screen/#membership
    – check your permalink settings are using one of the pretty permalink options (not plain), see this documentation page wordpress.org/support/article/using-permalinks/#mod_rewrite-pretty-permalinks
    – check the activate and register actions are associated with a public WordPress page. You can find some inputs about it from this documentation page : codex.buddypress.org/getting-started/configure-components/#settings-buddypress-pages

    NB: the registration and activation pages are only displayed to users who are not logged in,
    )

    site is https://www.chatyolo.com/register/ – it’s kind of NSFW

    1. Which version of WordPress are you running?
    5.8.3
    2. Did you install WordPress as a directory or subdomain install?
    main directory
    6. Which version of BP are you running?
    9.2
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    301 Redirects, All in One SEO, AdRotate, Error Log Monitor, Forminator Pro,
    Slide Anything – Responsive Content / HTML Slider and Carousel, Wise Chat Pro, Wordfence Security,
    WP Activity Log, Smush Pro, Query Monitor,
    9. Are you using a standard WordPress theme or customized theme?
    tried both -happens with 2021 theme, zakra, and astra

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    2.6.9 – it’s turned off through and still issue

    20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page.
    was on legacy, switched to neavox

    Tried with firefox and chrome and different computers..
    had a few other profile fields – then removed them from the base signup and it still fails –

    Help greatly appreciated

    #322780
    Mathieu Viet
    Moderator

    Hi @maelscuttle

    Thanks for your report. If these fields are generated filtering the wp_get_user_contact_methods() function they should be included into/updated from the front-end xprofile form.

    I’ll give it a look and will be back soon.

    #322478
    hayeu74
    Participant

    Then why not you use any tool for this purpose who can automatically tracks the meta fields as you can see on this profile here I am using the same facility.

    #322418
    wackao
    Participant

    This is not available by default but it is one of the most popular requests in BuddyPress custom profile fields.

    Alternative :

    In our plugin VibeBP , we have create a social profile field in Buddypress.
    this is how it works : https://www.youtube.com/watch?v=m-PQ1XfFfCI , the output is static “cacheable” profiles which load faster than standard buddypress. Let me know if interested.

    wasanajones
    Participant

    I’d like to add custom WordPress profile fields that in turn are synchronized with BP Xprofile fields. (I want to register users not using buddypress for registration)

    this bpdev post hints that is would be a ‘thing’ – but the explanations are incomplete. https://bpdevel.wordpress.com/2021/03/24/wordpress-xprofile-field-types/

    searching solutions for adding WP profile fields look like there is no way they’d be compatible with Xprofile sync

    Is this even possible?

    Is there an explanation/tutorial somewhere?

    Thanks

Viewing 25 results - 101 through 125 (of 3,615 total)
Skip to toolbar