Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 151 through 175 (of 4,122 total)
  • Author
    Search Results
  • maddoctor
    Participant

    Can custom fields be added to the profile page?
    I want to use the plugin Advanced Custom Fields to add custom fields on the profile page. I know there is a buddypress specific plugin that adds custom fields but it doesn’t offer the field types I’m after. OR if there is another custom fields plugin that can be used to add custom fields on buddypress profile pages. (I’m looking to add a repeater field, a field that users can add multiples of)

    #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

    #322209
    Technigal
    Participant

    Hi

    I want to have only certain profile fields appear according to the user role. For instance, a normal subscriber should not be able to see the edit fields that an author would see.

    I have already looked at “Conditional Profile Fields for BuddyPress” but it’s not what I am after – subscribers should never see the same fields to edit, as authors on this site.

    So subscribers will be able to view an author’s profile 100% – but they should not see the same profiel fields to edit, on their own profiles.

    I hope I’m making sense. Suggestions will be much appreciated.

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

    };

    #321503
    oguruma
    Participant

    I have a profile field called “phone number”. I need a way to set that as a variable so I can send it with a curl call..

    Does anybody know the function to get profile field data?

    #321317
    sparkyparks
    Participant

    Hi, Thanks in advance.

    WP 5.8.1
    BP 9.1.1
    marioncomga.org

    We are working to add BP to our site. We have successfully added several Profile Fields. Here’s our dilemma, we want to limit the ability to edit those Profile Fields based on Role. Just two Role options, Edit by Member or Edit by Admin Only. Currently “Requirement” and “Visibility” are settings under Profile Fields. How can I add a third setting option called something like “Edit Options”?

    Thanks again,
    Jim

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

    #320820
    rapidasia
    Participant

    Hi – is there a way to import a CSV to CREATE new xprofile fields? (looking to create, not import data — rather than manually adding xprofile fields in WP admin)

    if there isn’t a CSV/plugin approach for this – can anyone refer to a SQL database approach tutorial and do it there?

    Thanks

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

Viewing 25 results - 151 through 175 (of 4,122 total)
Skip to toolbar