Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

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

    xbladerunner
    Participant

    I have three signup fields that look identical. This phenomenon is displayed on the registration page, as well as in the signup fields tab from the admin side (users/profile fields).
    I can reorder them and edit them, but not delete them. Please help.

    Buddypress version 9.1.1
    Wordpress 5.8 multisite configuration (all the sites are displaying the error, example linked below)

    Register

    #320510
    ririshi
    Participant

    Hey there. I just ran into the same issue and fixed it by replacing an old (deprecated in BP 8.0.0) call to bp_nouveau_base_account_has_xprofile() with bp_nouveau_has_signup_xprofile_fields(true). The true is very important as it will initialize the global variable $profile_template, which is used by bp_profile_groups() (the function that is erroring). You’d have to change this in the overwritten buddypress register.php template, used by your theme. My template probably looks different from yours, so I can’t provide the specific lines that you’d have to make changes to. Good luck!

    #320505
    knowmates
    Participant

    Hello,

    in our registration form we have two areas with the following fields (all required):

    Account details (WordPress):
    – field “user name”
    – field “email”
    – field “choose a password”
    – field “repeat chosen password”

    Profile details (BuddyPress):
    – field “name”
    – field “first name”
    – field “last name”

    Actually we don’t need the fields “user name” (WordPress) and “name” (BuddyPress).

    We want to use only first name and last name (no user name, name, nickname, whatever). Is that possible?

    With that we want to make the registration easier to our users and we also want to sort the members directory according to the last name. Is that also possible?

    Best regards

    vitoanthony80
    Participant

    Good morning.
    For several days I have a problem that consists in the possibility of extracting from the site I am creating the data entered by users in the registration / registration form, in which I have added several fields with the BuddyPress Xprofile Custom Field Types plugin.
    I have tried several plugins and all of them only allow you to extract the base fields. I am wondering if the add fields plugin allows you to add other fields as base fields why do the plugins I have tried do not recognize these fields as base fields?
    The creator of one of the plugins used told me that the additional fields do not end up in the database or are not considered as metadata because buddypress uses its own tables.
    So how can I do to extract user data into a single csv or excel file?
    It is strange that this function does not happen as a basic function of buddypress …

    The extraction plugins used are:

    LH Buddypress Export Xprofile Data
    LH Export Users to CSV
    Import users and customers from CSV
    WordPress Users & WooCommerce Customers Import Export (BASIC)

    I hope there will be some users who can help me.
    Thank you

    mark2021
    Participant

    BuddyPress 9.0

    This is my scenario. I want only the user to input his/her username and email upon registration. Later he/she can update his/her profile once registered. My Problem is I cant see the other field group in the profile, which have all the needed fields, only the base field group is there.

    I am following this documentation, https://codex.buddypress.org/getting-started/guides/modifying-the-registration-form/. Is there additional steps to do?

    Nifty
    Participant

    Hello,

    I’m working on a mobile app to interface with our BuddyPress 9.0.0 website via the BP API. Our website has some xprofile group fields of the “checkbox” type, each group with a set of “options” which the user can set to be true or false. For example, there is a group called “Pets” under which the user can select one or more of the specified check boxes such as “Dog”, “Cat”, “Cow”, etc.

    I am having trouble trying to update this type of “checkbox” field using Postman. The update works fine for fields of type “textbox” and “selectbox”, but doesn’t work for the “checkbox” type.

    The endpoint is “/buddypress/v1/xprofile/<field_id>/data/<user_id>” (POST operation, here the field_id I am using is the id of the parent group field)

    The JSON in the body of my call is
    { “context” : “edit”, “value”: [“Dog”, “Cat”]}

    As mentioned before, if I try the same post call with a field of type “textbox” or “selectbox”, it works fine, but if I post to a “checkbox” field it just clears the existing data and does not set it to the new values.

    Any ideas what I may be doing wrong here?

    #320150
    scaredychatter
    Participant

    Hi, new to this whole BuddyPress thing. Trying to make a social site and I’m having a rough time with it.

    I’ve searched and searched, here included, for info on how to change the colors and design of the profile page, but all I ever find is how to add new fields. I don’t want to add new fields, I want to change the colors. Can’t find it anywhere. Please help.

    WP/BP versions – current

    nzurita
    Participant

    Hello, I just installed and configured BP and registration page is blank.

    These things are checked:

    • Site is configured to allow anyone to register
    • BP is coonfigured (under pages tab) with correct register and activate page
    • WordPress permalink structure has been reset and has been tried with both, page_name and date/pagename
    • Pages register and activate do exist and show header and title, but content is blank
    • I tried both BP themes, legacy and noveau. register.php file exists under both themes folder
    • Worpress version 5.8, BP version 9.0.0
    • I dindn’t configure any additional fields for registration under profile fields but according to the docs, the form should be available with this configurations I did.

      Thank you.

    #320012
    codyrickman
    Participant

    Shane, thanks. I have tried to contact them but it seems they are off the grid. Can you point me to an example of how to loop through the x profile fields for the registration form? I believe fixing that will resolve my issue.

    vitoanthony80
    Participant

    Good morning.
    In my site I have created new fields with the plugin.
    The problem is that these fields do not follow the order I set in administration.
    Is there a way to arrange them in the order I would like?
    Thank you

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