Search Results for 'profile fields'
-
AuthorSearch Results
-
September 16, 2013 at 8:59 pm #171393
In reply to: Adding classes to profile fields
danbp
ParticipantYou create a new field on profile (ie. title=Amount)
This field is a checkbox type field
You have 4 items to check, so you need to create 4 checkboxes.The field name called by the function correspond to the title you give to your new field. So you actually have 1 field name and 4 checkbox values.
The example above will output the checked value by the user on the member profile header (bp_before_member_header_meta)
function my_moneytizer() { if ( $money = xprofile_get_field_data( 'Amount', bp_get_member_user_id() ) ) : foreach ( $money as $mon ) { echo '<br/><div class="checkit">'; echo '<span>Earned today: </span>'; echo $data; echo '</div>'; } endif; } add_filter ( 'bp_before_member_header_meta', 'my_moneytizer' );September 16, 2013 at 3:13 pm #171381In reply to: Adding classes to profile fields
applegateian
ParticipantThanks @danbp – I’m not entirely sure how to create that filter function, can you expand on that?
The four unique names are:
- £0-£100k
- £100k-£500k
- £500k-£2m
- £2m+
thanks,
Ian
September 13, 2013 at 9:09 am #171277Squirrel
ParticipantMy portal theme only lets admin / editor users view all members profiles or other users view other profiles if they are friends. If you want more info on how I did this let me know.
September 13, 2013 at 12:19 am #171263In reply to: New profile fields!
bp-help
Participant@budskab
The code I provided calls the current user dynamically if that is what you are wondering. Even thought it is one link it will take each user to their edit profile field group you created. Feel free to experiment around with it. Try these as well:<a href="<?php global $current_user; echo home_url() . '/' . $current_user->user_login . '/profile/edit/group/1/'; ?>">Edit My Profile</a></div>Or:
if ( is_user_logged_in() ) { <a href="<?php echo bp_loggedin_user_domain(); ?>">Profile</a>//link to users profile <a href="<?php global $current_user; echo home_url() . '/members/' . $current_user->user_login . '/friends/'; ?>">Friends</a>//link to users friends <a href="<?php global $current_user; echo home_url() . '/members/' . $current_user->user_login . '/messages/'; ?>">Messages</a>//link to users messages }As a final thought if you add those links I would wrap them in a conditional to check if the user is logged in like the links just above.
September 12, 2013 at 9:47 pm #171253In reply to: New profile fields!
budskab
ParticipantAdding an image would be easy enough yes..
Thanks for the line.. I’m still new to PHP, so this is the hardest part right now 🙂 But the line above seems logic… could i then just change the ‘profile/edit/group/2/’ part to other profile URLS? Sure would be cool. Our users are most likely not that techie and we desperately need to make it easy filling out their profiles 🙂
Can I change the standard registration fields in any way?
September 12, 2013 at 9:36 pm #171252In reply to: New profile fields!
bp-help
Participant@budskab
This link should work below. You could also add an image to replace the text providing you know some basic html.<a href="<?php global $current_user; echo home_url() . '/' . $current_user->user_login . '/profile/edit/group/2/'; ?>">Edit My Profile</a></div>September 12, 2013 at 9:23 pm #171251In reply to: New profile fields!
budskab
ParticipantHi
Ahh… There they are… Is there a way to make them a little more visible for the users?
Otherwise could we link to “../members/admin/profile/edit/group/2/” in a usermanual, and then the user will be directed to their own profile edit page?
September 12, 2013 at 9:14 pm #171250In reply to: New profile fields!
bp-help
Participant@budskab
They are not visible until the user fills them out. In the My Account Menu at the top right hover over it and select Profile/Edit. When you are on the next screen below the profile tabs you will see “Base” and whatever other field group you created. By default you will be on “Base” these fields are the ones that correspond with your registration form. The other Field Group button you made will display the other fields you created within that field group. This is assuming your theme is functioning correctly. If you are still having issues you may want to try some basic troubleshooting by activating a known theme that works well with BP like Twenty Twelve or bp-default as well as disabling any plugins other than BP. Good luck!September 12, 2013 at 6:17 pm #171233Ben Hansen
Participantyou can’t really hid the entire profile out of the box but you can hide most of the fields and info by setting the default visibility in the profile field setup screens.
September 12, 2013 at 2:23 pm #171198In reply to: Credential system for members of certain groups
Artisantopia
Participantok – just adding this here so I have everything in one place:
How to Add an Image Field to Buddypress Extended Profile FieldsSeptember 12, 2013 at 2:03 pm #171196In reply to: Credential system for members of certain groups
Artisantopia
Participantooh what about this one for the file uploads:
https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/Can anyone advise which of these options works best?
thanks
September 12, 2013 at 1:58 pm #171193In reply to: Credential system for members of certain groups
Artisantopia
ParticipantWhat if I just set up xprofile fields in a separate profile field group? If I use a field type of multi line text box then they could enter unlimited credentials. This field could then be searched couldn’t it?
hmmmm, but then how to get the file upload in?..
September 12, 2013 at 1:37 pm #171192In reply to: Credential system for members of certain groups
Artisantopia
Participanthttps://wordpress.org/plugins/buddypress-profiles-manager/
ok, doing some more research and I’ve found this plugin which would possibly work by only showing the credentials profile fields for the experts. I’m not using S2member, but I am looking at other membership plugins, or I assume I could just use a capability manager to create new roles….
Yes? No? Maybe?
ok – back to Google for some more research…
September 11, 2013 at 8:41 am #171135In reply to: Remove the Name (required)
danbp
Participanthi @famous,
so far i know, is the registration process a fully part of WordPress who use a function called wp_create_user.
This function requires 3 variables: name, pwd and user email to authenticate.As a templated plugin, BP let you handle visualy a part of this process, particulary with extended profile fields. But BP doesn’t alter the orignal registry handling. The only 2 other things you can do is to change the NAME field name and allowing synchronization between WP and BP.
So the BP name field stays mandatory in any case and you cannot remove it.
September 11, 2013 at 4:21 am #171130In reply to: Buddypress x-profile visibility doesn't work
envieme
ParticipantHi there, just nudging to see if there’s a work around or hack in BP code I can do to enforce desired x-profile visibility levels as in my case users need not have an option to choose their visibility levels. So I hope someone can point me in the right direction on how to hardcode the visibility levels for my x-profile fields in the code.
Many thanks.
September 10, 2013 at 6:41 pm #171107In reply to: Adding classes to profile fields
danbp
Participanthi @applegateian,
read here how to fetch checkbox,radio and multiselect datas
1) give each check box a unique name
2) create a filter function with your css items around the echo $data.
3) add the filter to a profile action
4) doneSeptember 10, 2013 at 5:20 am #171066bp-help
Participant@rameshwormaharjan
I tried your plugin and it works as you describe but it would be better if the admin could edit the xprofile fields as well from the dashboard. It is inconvenient for the admin to have to switch between the dashboard to the front-end to edit the xprofile fields. If you can get the plugin to that point it would be very useful.September 1, 2013 at 10:06 pm #170729In reply to: Men/Woman Option Redirect?
Xevo
ParticipantCreate a radio button through your profile fields, and once logged in let your theme get the profile fields data and let it decide what template parts to load.
Thats pretty much it.
August 28, 2013 at 11:17 pm #170589In reply to: Show members with certain role
mattvd
ParticipantHi henry thanks for all of your help.
I think I have the code somewhat working, at least it says up top viewing members 1 of 5 (I have 1 member assigned as editor). But it doesn’t pull anything like their avatar and name etc.
http://postimg.org/image/ay8fbd23f/
Here is my code (the part that you recommended)
<ul id="members-list" class="item-list" role="main"> <?php while ( bp_members() ) : bp_the_member(); ?> <?php $user_id = bp_get_member_user_id(); $user = new WP_User( $user_id ); if ( $user->roles[0] != 'editor' ) break; ?> <li> <div class="item-avatar"> <a href="<?php bp_member_permalink(); ?>"><?php bp_member_avatar(); ?></a> </div> <div class="item"> <div class="item-title"> <a href="<?php bp_member_permalink(); ?>"><?php bp_member_name(); ?></a> <?php if ( bp_get_member_latest_update() ) : ?> <span class="update"> <?php bp_member_latest_update(); ?></span> <?php endif; ?> </div> <div class="item-meta"><span class="activity"><?php bp_member_last_active(); ?></span></div> <?php do_action( 'bp_directory_members_item' ); ?> <?php /*** * If you want to show specific profile fields here you can, * but it'll add an extra query for each member in the loop * (only one regardless of the number of fields you show): * * bp_member_profile_data( 'field=the field name' ); */ ?> </div> <div class="action"> <?php do_action( 'bp_directory_members_actions' ); ?> </div> <div class="clear"></div> </li> <?php endwhile; ?>August 27, 2013 at 2:17 pm #170502In reply to: How to Get User Profile Data
shanebp
Moderator>would it work with BP’s fields
It should.
You can always hard code an ID to find out.August 27, 2013 at 1:31 pm #170499In reply to: How to Get User Profile Data
trinzia
ParticipantThis is for customized comments on custom post types. The specific question is what user ID I would use, to display an xProfile field for each comment author.
I found WP’s comment author name and link, but not ID. If I did manage to get the comment author ID somehow (haven’t managed that yet), would it work with BP’s fields?
August 27, 2013 at 9:45 am #170494Drexel82
ParticipantThis solution worked for me. Thanks.
August 26, 2013 at 8:02 am #170416Rayleigh
ParticipantAnd I paste my code :
<div class="bp-widget <?php bp_the_profile_group_slug(); ?>"> <!-- <h4><?php /* bp_the_profile_group_name(); */ ?></h4> --> <div class="profile-fields grid_7"> <ul> <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?> <?php if ( bp_field_has_data() ) : ?> <li<?php bp_field_css_class(); ?>> <ul> <li class="label"><?php bp_the_profile_field_name(); ?></li> <li class="data"><?php bp_the_profile_field_value(); ?></li> </ul> </li> <?php endif; ?> <?php do_action( 'bp_profile_field_item' ); ?> <?php endwhile; ?> </ul> </div> <div class="grid_5"> <?php if( function_exists('upm_single_map_display') ) : upm_single_map_display(); endif; ?> </div> </div>https://docs.google.com/file/d/0B__rIOiJ6Zq4MlU5WWlYQXMxLVk/edit?usp=sharing
August 22, 2013 at 3:36 pm #170237marmuel
Participantno common usecase?
August 20, 2013 at 3:29 pm #170113wildcatdigital
ParticipantHaving the same exact problem with the website field. Textbox fields also work perfectly fine for me.
WP 3.6
BuddyPress 1.8.1
BuddyPress Xprofile Custom Fields Type 1.5.7.1All that shows up is “This field can be seen by: …”
🙁
-
AuthorSearch Results