Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 126 through 150 (of 3,913 total)
  • Author
    Search Results
  • #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.

    #322910
    jamiejbwarren
    Participant

    I need some sort of function that can mass update a extended profile field I added called ‘My Pin’

    I need to mass update for all users to set My Pin field to “Jamie001”

    Any ideas?

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

    #322355
    smartkidstt
    Participant

    I was able to change the font size of the Account Details with:

    #buddypress #register-page label {
    font-size:70%;
    }

    I used this to try and change the font-size of the (Extended) Profile Fields:

    #buddypress table.profile-fields td.label {
    font-size:120%;
    display: table-cell;
    }

    But it didn’t work. Please assist! http://www.smartkidsclubtt.com/register

    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

    #322156
    #322032
    aashraf85
    Participant

    Hey,

    I have one question. I want that if a user is registering on my website, that when he goes to the register page, that he can choose between the member type and then for the member group specific the questionaire appears. I already created different member types and also I changed the profile fields

    How can I achieve that. Thank you very much!

    Website: dmg-heirat .de

    #321506
    oguruma
    Participant

    Thanks for the input. I was hoping to catch extended profile meta at time of registration, but it turns out that the insert_user_meta filter fires too soon…

    Do you know of a good way to capture extended profile meta at user registration? (assuming they entered it at registration, of course).

    `add_filter(‘insert_user_meta’,’send_user_data’,100,4);

    function send_user_data($meta,$user,$update,$userdata){
    $user_id = $userdata[‘ID’];
    $phone_number = strip_tags( xprofile_get_field_data ($user_id, ’11’,’string’) );

    $ch = curl_init();

    $user_payload = array (
    ‘id’ => $user_id,
    ‘phone’ => $phone_number,
    );

    curl_setopt($ch, CURLOPT_URL,”https://myurl.m.pipedream.net”);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $user_payload);

    // In real life you should use something like:
    // curl_setopt($ch, CURLOPT_POSTFIELDS,
    // http_build_query(array(‘postvar1’ => ‘value1’)));

    // Receive server response …
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    $server_output = curl_exec($ch);

    curl_close ($ch);

    return $meta;
    return $user;
    return $update;
    return $userdata;

    };

    #321016
    Rox-1
    Participant

    I’ve installed Buddy Press and the X custom fields plug in, but I don’t get the Users > Profile Fields option in the Dashboard. I’m completely befuddled as to why I can’t find it… have I done something mind bogglingly stupid? 🙂

    #320954
    Rox-1
    Participant

    I was going to try and play around myself and see if I could add some features I wanted… but after installing Buddy Press and the X custom fields plug in, I don’t get the Users > Profile Fields option in the Dashboard. I’m completely befuddled as to why I can’t find it…

    #320944
    Rox-1
    Participant

    Hello,

    Sorry if this is a silly newbie question, I’m making my own site at the moment, and I want to create a profile page where there are seperate fields which can be searched and saved. Each entry would be saved with date and time, a little like a diary or journal. Hopefully, this information can be made available to all other registered members, kept private, or emailed to a third party if required.

    It’s a bit like a journal to keep track of things. The sharing option is there if people want to share with their community, or if they need to email or make their notes visible to someone else.

    I did install BuddyPress yesterday (9.1.1), but didn’t really have a clue where to start – I may be diving into the deep end with this one! WordPress version is 5.8 and my site is http://www.inspireyourdog.com – it’s a work in progress. 🙂

    How would I go about this? Where would I start?

    I suspect it may be simpler than I think it is!

    Thanks,

    Paul.

    lbnn
    Participant

    Hello,

    I try to show profile fields on profile page even if it’s empty.

    If you have a solution, because it only appears when a value is filled in.

    Thanks you for your help 😉

    #320821
    shanebp
    Moderator

    Assuming you know how to load and parse a csv file with php, you could adapt this example to dynamically create xprofile fields.

    #320677
    xbladerunner
    Participant

    With it being a multisite configuration, there are a lot of instances of xprofile_fields –Any tricks to mapping the db prefix to particular subsites of the multisite?

    #320659
    shanebp
    Moderator

    You could check the database.
    Look at this table (your db prefix)_bp_xprofile_fields

    #320658
    xbladerunner
    Participant

    No additional plugins or code for the profile fields. I’ve been checking all the places I know for customizing the registration page, all the customizations I’ve found are in the custom theme (which are ruled out given that the issue occurs when using 2021 default theme).
    1) Is there anywhere else to look?
    2) Could the problem be in the database, from some historical event– could I edit them out there? or
    3) Is there a way to prevent the profile fields from showing during registration?

    #320644
    shanebp
    Moderator

    Are you using a customized registration page?
    Or any plugins or code re profile fields?

    #320643
    xbladerunner
    Participant

    The duplicate fields still occur with WP theme 2021, as well as with the captcha plugin deactivated.
    I do not see the duplicate fields in Profile>Edit on the front end.

    maelscuttle
    Participant

    I’m trying to allow users to edit certain WordPress metadata fields on the frontend, namely contact and social information such as website, twitter link, etc. This functionality is outlined e.g. here https://bpdevel.wordpress.com/tag/wordpress/, however it only partially seems to work.

    I’ve added 4 custom fields to the profile:
    – Bio [type: Biography]
    – Website [type: WordPress Text Field: Website]
    – Twitter [type: WordPress Text Field: Twitter]
    – Twitter [type: WordPress Text Field: Instagram]

    When I fill them out on the frontend, only Bio and Website are correctly stored to the user-meta table, Twitter and Instagram content seems to be lost. I can however edit them in the WordPress backend and they get correctly displayed on the front-end profile.

    I’ve managed to synchronize them by updating them manually via code using update_user_meta() on save, but I feel like this defeats the point or shouldn’t be the way to go if the functionality is there on the admin menu.

    Or am I doing something wrong here?

    #320620
    bikkes69
    Participant

    Hi there, im having a big problem with the default required field in xprofile, and i already search for a lot of people having things similar and is all about the same but no solution. The “extended” profile of buddypress has a required field that is the same as the username in wordpress, so it has problems because if you change the username but leave the “name” of the xprofile empty automatically has an error. Why dont you you remove that unique field from de xprofile and let everyone make the fields they want, that thing is causing problems in every theme. i hope you understand , i can make a site for anyone to check this.

    BP : Last
    WP: Last
    Nothing else.

    #320619
    shanebp
    Moderator

    I cannot duplicate the issue.
    To narrow it down, try momentarily:
    – removing the captcha
    – switch to a WP theme like 2020

    Do you also see duplicate fields when you go to Profile > Edit on the front end?

Viewing 25 results - 126 through 150 (of 3,913 total)
Skip to toolbar