Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 1,276 through 1,300 (of 3,589 total)
  • Author
    Search Results
  • #180758
    Lerroy
    Participant

    @Barney

    Thanks for pointing me to that.

    I’m still struggling though PHP aint my thing 🙁

    So the primary field “Name” and my other fields are called “State: and “Organization” and “Website” these are the field names I insert ?

    Heres where i put it..But doesnt show full member-header

    ` </div><!– #item-buttons –>

    <?php
    /***
    * If you’d like to show specific profile fields here use:
    * bp_member_profile_data( ‘field=About Me’ ); — Pass the name of the field
    */
    do_action( ‘bp_profile_header_meta’ ); // Here is one way you could add xprofile fields name as well as the value to the members directory!
    // Just remember to replace “Field-Name” with the names of your fields in the 5 variables in my code.
    // Also remember the field name is case sensitive. If you notice the pattern of 5 in my code you can
    // easily see how to add more fields if you need them. You can also use the div class bph_xprofile_fields
    // to adjust the CSS in your stylesheet. Place this code in bp-custom.php:
    add_action(‘bp_directory_members_item’, ‘bphelp_dpioml’);
    function bphelp_dpioml(){
    $bphelp_my_profile_field_1=’Name’;
    $bphelp_my_profile_field_2=’State’;
    $bphelp_my_profile_field_3=’Organisation’;
    $bphelp_my_profile_field_4=’Website’;
    $bphelp_my_profile_field_5=’About-you’;
    if( is_user_logged_in() && bp_is_members_component() ) { ?>
    <div class=”bph_xprofile_fields” style=” margin-left: 25%;”>
    <?php echo $bphelp_my_profile_field_1 ?>: <?php echo bp_member_profile_data( ‘field=’.$bphelp_my_profile_field_1 ); ?><br />
    <?php echo $bphelp_my_profile_field_2 ?>: <?php echo bp_member_profile_data( ‘field=’.$bphelp_my_profile_field_2 ); ?><br />
    <?php echo $bphelp_my_profile_field_3 ?>: <?php echo bp_member_profile_data( ‘field=’.$bphelp_my_profile_field_3 ); ?><br />
    <?php echo $bphelp_my_profile_field_4 ?>: <?php echo bp_member_profile_data( ‘field=’.$bphelp_my_profile_field_4 ); ?><br />
    <?php echo $bphelp_my_profile_field_5 ?>: <?php echo bp_member_profile_data( ‘field=’.$bphelp_my_profile_field_5 ); ?><br />
    </div><?php
    }
    }

    ?>’

    #180735
    SimpleOne
    Participant

    @espellcaste, I had already read through that WP doc you referenced. That’s actually where I learned what lines of code to add to my wp-config.php file that I mentioned above.

    And yes, it is redirecting to the BP Registration page. That’s expected behavior since I have my BP settings that way. (I have some custom BP profile fields that I want users complete during registration.)

    I have posted my question here (as opposed to WP support) because it seems to me the issue may have something to do with how I have BP setup to interact with WP. And so I would think that someone else perhaps has encountered this same issue with BP and the Registration page.

    Anyone?

    #180697
    Renato Alves
    Moderator

    @cdb3212 As far as I understood your problem, there are two articles that would save your life if you had a chance of looking in the Codex. These are:

    https://codex.buddypress.org/getting-started/guides/displaying-extended-profile-fields-on-member-profiles/

    bp_profile_field_data()

    Take a look at those and try it out. =)

    #180695
    Renato Alves
    Moderator

    Hi @theatereleven,

    I’d say that what you aim for is perfectly possible with BuddyPress. You could the following, just suggestions:

    • Your users could register themselves;
    • Just active the Extended Profile component;
    • Use Extended Profiles Fields so that your users can add information when signing up or later;
    • And you could customize the appearance customizing the template the way you want.

    Maybe there is a better solution, but with BuddyPress you would get already built-in, profiles, profile fields, register process/page, user roles and etc.

    #180653

    In reply to: field visibility

    @shanebp Had support from the developer of xprofile. He thinks has something to do with buddypress. I don’t know. What I do know is that if I have the following code in the members-loop file:
    <?php $hidden_fields = bp_xprofile_get_hidden_fields_for_user(bp_get_member_user_id()) ; ?>
    <?php if (xprofile_get_field_data(‘field_name’) && !in_array(xprofile_get_field_id_from_name(‘field_name’), $hidden_fields)) : ?>
    <?php echo xprofile_get_field_data (‘field_name’); ?>
    <?php endif; ?>

    <?php bp_member_profile_data( ‘field=Adres’ ); ?>

    The first code with $hidden_fields and xprofile doesn’t return anything.
    The second code does always return data, no matter how visibility is set.

    Any ideas?

    #180432

    In reply to: BP search box

    loufernando
    Participant

    Thanks Renato, that makes sense. Hopefully someone might know how to add the text in the profile fields searchable so they appear in the search results.

    #180412

    In reply to: field visibility

    @shanebp Thanks. I used the code and put it in the members-loop. No result. I can see the fields in the admin section as well as in the profile. I can change visibility to one of the four possibilities. But none shows up in the members listing. I don’t get it.

    #180251
    Turker YILDIRIM
    Participant
    #179787

    In reply to: Editing Field error

    shanebp
    Moderator

    >I think it occurs because the user can not see the hidden fields.

    The field is not hidden.
    It doesn’t exist in the form because you skipped it.
    But it is included in the hidden input ‘field_ids’, near the bottom of the form.
    BP will try to save it, based on the fields ids, but not find it and then throw the error.

    Instead of skipping, try changing the field type to hidden.

    If you don’t want it in the form at all, then skip it AND remove it from the string of included ids.
    Use bp_get_the_profile_group_field_ids() and do your removals and then put the new string in the ‘field_ids’ input field.

    #179692
    danbp
    Participant

    I would like to have a better control over xprofile fields creation.
    Specially maxlength and is_numeric declaration avaible on the editor page.

    Something like:

    Add a new field (select field type) > single line textarea
    Maxlength ? [] Numeric ? []

    Filtering bp-get-xprofile-field-data for each custom field is not always pertinent IMO. 😉

    #179603

    In reply to: Member profiles

    Aldwin Jay
    Participant

    Did you already created some profile groups and fields in Users > Profile Fields?

    iameverywhere
    Participant

    Just a heads up, because I know a lot of people have asked and not gotten anywhere, but you can use this feature + Buddypress Xprofile Custom Fields Type plugin to create a forum badges feature. That was my goal with this and it works. You just need to display:none; the field# class so that users dont see it as an option to edit in their profile. Then you have complete control and can give users badges that show up in the forums 😀

    *flys away*

    #179437
    boblebad
    Participant

    Thanks for your reply Henry 🙂

    I can’t find anything that looks like that in the database, and when going through the table names, there isn’t anything that sounds like having something to do with xProfile ?

    I need to find the ID of the fields, so i can use them with BuddyPress Profile Progression “bppp_progression_block($user_id)”.

    All the best
    Carsten

    #179423
    Henry Wright
    Moderator

    No, they’re not treated as posts. They are called xProfile fields and form part of the xProfile component. They’re saved in their own table which I do believe is called wp_bp_xprofile_fields

    #179402

    In reply to: Stop BuddyPress SPAM

    BuddyBoss
    Participant

    Two more methods that help. I recently had a crazy spam attack – probably 300 fake signups per day. I implemented these two methods and it dropped to near 0.

    1. Change the /register/ slug to something unique. An example would be /create-your-account/, or something of that nature. It just needs to be unique and also make sense in a URL for your user. Spammers targeting BuddyPress look for /register/ as the signup page. It’s all automated so you want to filter them out at the first step.

    2. Add this to your functions.php file in your theme or child theme.

    It presents a dummy field that humans don’t see. Spambots will fill it out, and if the field captures a value it will reject the signup.

    // BuddyPress Honeypot
    function add_honeypot() {
        echo '';
    }
    add_action('bp_after_signup_profile_fields','add_honeypot');
    function check_honeypot() {
        if (!empty($_POST['system55'])) {
            global $bp;
            wp_redirect(home_url());
            exit;
        }
    }
    add_filter('bp_core_validate_user_signup','check_honeypot');

    Credits for #2 go to:
    http://mattts.net/development-stuff/web-development-stuff/wordpress/buddypress/anti-spam-techniques/registration-honeypot/

    I edited it slightly to remove the required redirect. Add that back from his tutorial if you want to. It requires that you make an extra page to send the spammer to, and I personally think that’s not necessary. I actually want them to have no indication their signup failed.

    #179347
    cyndimarie
    Participant

    After snooping around I can see that the tables for the profile fields are created in profile-loop.php and bp_the_profile_field_value is defined in bp-xprofile-template.php I’m not sure about editing these files though…

    I can’t seem to find the file that directs the items in a profile field to be separated by a comma, however I did find this topic: bp_the_profile_field_value and separating values

    Instead of separating the items in the <td class="data"><?php bp_the_profile_field_value(); ?></td> by commas, I want to make them into an un-ordered list.

    Any thoughts on how?

    #179091
    boblebad
    Participant

    I appreciate that 🙂

    Thank you.

    I’ve bin searching a little around, and found that by adding new user roles, and by making the forum “read only”, that’ll clear one of the things i need done.

    The adding of more fields can be done from the settings /user/profile fields.

    From there the checkboxes is possible too, i just right now don’t know if they are searchable, but i’ll figure that out.

    The progression thing i think i got cleared too, i might need to mix something from another plugin to get the style match what i want.

    The only thing left is the restriction of conversations between the membership plans.

    All the best
    Carsten

    #179061
    WIBeditor
    Participant

    This hit me too, but with profile fields set to “only me.”

    It’s about as big a potential problem as I can imagine.

    #179023
    alexfads
    Participant

    Thanks @shanebp. I had this already written: <?php echo do_shortcode(‘[userpro template=view]’); ?>, but now im just not understanding where to put it, and if im missing something else as far as the “filter” goes. I first attempted to add <?php echo do_shortcode(‘[userpro template=view]’); ?> to the member-header.php file, somewhere right above this: <?php
    /***
    * If you’d like to show specific profile fields here use:
    * bp_member_profile_data( ‘field=About Me’ ); — Pass the name of the field
    */
    do_action( ‘bp_profile_header_meta’ );

    ?>

    but that didnt work. so then i did some more research and thats where i read that BP doesnt parse shortcodes and i would have to either make a function and add a filter that would allow shortcodes, or add a filter to an already exsisting function (which i was assuming was the bp_profile_header_meta’) that would allow shortcodes. Well, then of course being a newbie, i got lost looking at all of the codex stuff regarding functions parameters and return values, it all kind of went over my head, and couldnt figure out where to start anymore so i gave up. I dont have the means to hire a developer at this point, so ill just have to keep doing research until i figure out this filter function shortcode stuff, lol. Anyway, if you have any other ideas or ways i might be able to figure this out im all ears, otherwise, i genuinely appreciate your help. It’s hard to come across developers that are ok with sharing knowledge and help us newbies, so i thank you

    #178843
    BuddyBoss
    Participant

    How can I also make it so that the fields on the profile page are to be filled out when you have signed up and not on the registration page?

    The fields added into the primary profile field group, named “Base” by default, will get collected on registration. The ones added to other profile field groups do not get collected on registration and are optionally added by users after register. So just make some profile field groups and put the fields you want to collect on registration into the Base profile field group, and the additional fields into another profile field group(s).

    #178833
    boblebad
    Participant

    Thank you you answers, especially you tolusage 🙂

    I’ve got a few question.

    Is buddypress-xprofile-custom-fields-type necessary, under /users/profile fields in the Dashboard, it is possible to add more fields?

    Can’t the membership plans be done with PaidMembershipsPro, i have for an earlier project bin looking at s2members, and found it complicated to configure, so many settings ?

    I’ll have a look at bp-better-directories and buddypress-profile-progression 🙂

    Thanks again 🙂

    All the best
    Carsten

    #178820
    Suzan Jasmin O.
    Participant

    Thank you @tolusage, it was very helpful, first I installed “buddypress-xprofile-custom-fields-type.1.5.8.4” plugin then “bp-xprofile-wp-user-sync” as you said. Some works now, except the profile page tabs and Signup module. Registration form all ok there are first name and last name boxes there.
    1-But on profile page there are about me and Looking for tabs. Ans I see the same data in both tabs. Looking for has the same info as About me. Basically the name, age, height, weight etc all base info appears in looking for tab too except in quotes in Looking for css design.
    2-And signup module doesnt show first and last name boxes
    As you know on signup box there are these element boxes:
    .User name
    .Your full name
    .Your email
    .Desired password
    .Confirm password
    So I want to get rid off that “Your full name” and put “First name” and “Last name” boxes there. So what file do I need to modify? And how, with what coding?
    3-And on admin panel as admin I want to be able to edit user data, at the moment I can edit only the names, email, password. But I want to be able to edit the age, height, weight, country, city thinks like that I have in the main registration form already exist. But on admin panel I cant see them for users to edit. How can I put them in users edit page?
    Could you please help out, thanx @tolusage

    #178804
    tolusage
    Participant

    @oscar582234,

    Try the above combination of tips by @henrywright and mine…

    Additionally, use the following plugin to create your First Name and Last Name fields as XProfile Fields:
    https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/

    Then use the above plugin to sync them as necessary!

    #178798
    tolusage
    Participant

    @boblebad,

    What you trying to create is a bit interesting and it might take about 3 or 4 plugins to manage fully… So follow the steps below and you’re well on your way:

    Foremost, Install this plugin:
    https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/
    (NB: That is for the More Profile Fields Option)

    Step 2:
    Install this plugin to achieve the “ticking off boxes, and also make them searchable, like vegetarian, vegan, smoking a.s.o. ?” that you asked:
    https://wordpress.org/plugins/bp-better-directories/
    (Although the plugin is a little old, the author is a BuddyPress core developer – see if you can work something out with him)

    Step 3:
    The 4 Membership Plans Stuff is best handled by the free version of the plugin below,
    https://wordpress.org/plugins/s2member/

    Step 4:
    About the Profiles Completion Meter (35% Completed and so forth, but without the quality stamp!)
    https://wordpress.org/plugins/buddypress-profile-progression/

    The quality stamp part is best worked out with the developer of Sweet Date. Just request custom development services from him and you’re good to go.

    #178662
    deepbevel
    Participant

    I added a profile field to the members header.php, it was overwritten when I updated to the latest bp because I forgot to add it to my child theme.

    it became the default:
    <?php
    /***
    * If you’d like to show specific profile fields here use:
    * bp_member_profile_data( ‘field=About Me’ ); — Pass the name of the field
    */
    do_action( ‘bp_profile_header_meta’ );

    ?>

    But the field still appears in the members header! how is this possible?

    My problem is, I’m trying to recreate the same site again, but I can’t duplicate it, I don’t know how to edit the members header anymore, or why it still works on my demo, but not when I use the same copy of bp as my demo?

    Im getting this error in the members header

    Warning: Creating default object from empty value in /home/palosverdes1/public_html/wp-content/plugins/buddypress/bp-members/bp-members-template.php on line 662

    What’s going on? Please help!

Viewing 25 results - 1,276 through 1,300 (of 3,589 total)
Skip to toolbar