Search Results for 'profile fields'
-
AuthorSearch Results
-
November 20, 2014 at 1:59 pm #229232
In reply to: How to list extended profile fields
wrify
ParticipantHas anyone found a solution to this?
Basically is as follows:
Profile fields > Base (Primary) > Category
Then, field type is a drop down with options
I just need to list those options in a frontend page, click on it and get the members for that option.
November 19, 2014 at 6:49 pm #229207In reply to: [INFO] Useful s2member/buddypress knowledge
shanebp
ModeratorRe: 2. Importing s2member custom fields to buddypress fields
Instead of, for now, editing the codex page, please note the args parameter for add_action.So the ‘2’ here is the arguments parameter.
add_action('wp_login','s2_profile_field_update',10,2);
So the hook provides 2 arguments – very handy & useful.
But your example doesn’t use them in the function s2_profile_field_update.
You can use the $user arg instead of$current_userand thereby get rid of that global.
Use this to see the data in $user:function hook_arg_display( $user_login, $user ) { var_dump( $user ); } add_action('wp_login','hook_arg_display',10,2);imo: There is no Option 1.
November 18, 2014 at 8:50 am #229144In reply to: [INFO] Useful s2member/buddypress knowledge
Hugo Ashmore
Participant@myg0t Thanks for sharing that with the community, S2 Member has wide use so this ought to be useful to people.
One point though it’s best not to advise that people edit a core file /buddypress/bp-templates/bp-legacy/..etc BP has a fairly well defined template hierarchy overload allowing files to be copied to the theme or child theme, those are the copies one should edit.
Another minor point rather than have to edit & pass the arguments in the template could bp_parse_args() perhaps work for this?
Using bp_parse_args() to filter BuddyPress template loopsIn respect of the profile data would not setting the user visibility options on the profile field/s in the backend not work to provide the privacy for address fields, just a thought but I may have missed the point of this aspect.
Lastly this could make a nice user example guide for the BP codex if you’d care to post it there and we’ll slot it under a section appropriate.
November 3, 2014 at 6:38 pm #228183In reply to: SalesForce & BuddyPress
Tanner Moushey
ParticipantHey @qmai! I have setup a system before to link BuddyPress Profile Fields to SalesForce, but it takes a good amount of custom work. The method I ended up doing was to add a piece of custom meta to the Profile Field edit screen that allows you to specify a SF field id. Unfortunately, the process of adding custom meta to a BuddyPress Profile Field is a lot harder than it sounds, but it is doable.
Let me know if you have any further questions. I can’t seem to find the code that I wrote for this, but I’d be happy to work through this with you.
October 30, 2014 at 5:06 pm #227975In reply to: WP – BP profile fields sync
shanebp
ModeratorI believe it only runs when a profile is updated.
Try doing a ‘save’ on a BP profile – edit screen.If it works, at least you know the sync is working going forward.
That doesn’t address your real issue re all your existing users.
You’ll probably need to write some code that loops thru your users and creates xprofile fields for them.Take a look at
function xprofile_set_field_datain
bp-xprofile/bp-xprofile-functions.phpOctober 30, 2014 at 4:50 pm #227970In reply to: WP – BP profile fields sync
Emineminero
Participant@shanebp yes, its enabled but nothing happens.
The filled fields on WordPress profile arent showing on buddypress profiles :/October 26, 2014 at 11:14 am #227729In reply to: Separate Business User
Henry Wright
Moderator- Have you searched the plugin directory?
- This can be done via hooks. It will need some custom code (not much, just a few lines).
- You could hide or show xProfile fields according to role. How exactly roles are created and managed will be dependent on point 1
- Again, to distinguish business users from ‘normal’ users, you’d use the roles created via the plugin you’re using from point 1. The jobs and adverts could each have their own custom post type
- This will need to be custom coded
Hope that helps?
October 24, 2014 at 8:20 am #225864In reply to: Members Directory
Chrisw83
ParticipantFor anyone looking. Here is an update.
1) I have created a page and called it, Homeowners Directory. In buddypress I have selected this page to show the members directory Buddypress -> Pages -> Members. How do I change the title of this page from Members to something else?
/wp-content/plugins/buddypress/bp-members/bp-members-loader.php
‘directory_title’ => _x( ‘Members’, ‘component directory title’, ‘buddypress’ ),
Change Members to what you need.
2) Currently on the Members Directory the members Name is shown, how do I add other profile fields here?
(Note, I am using s2member)Add the following code below “><?php bp_member_name(); ?><br />
Change street_address to your s2member profile ID.
<?php
$id400 = bp_get_member_user_id();
$fields = get_s2member_custom_fields($id400);
echo $fields[“street_address”][“user_value”];
?>/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.php
4) When you click on and view someones profile, what file do I need to edit to add a Return button to go back to the members directory?
/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/member-header.php
October 23, 2014 at 9:42 pm #225229In reply to: Page Not Found error for some members but not others
danbp
Participanthi @kristinrutten,
have you imported users from an older wp site ?
Are you hosted on wpengine ? (toc toc @hnla ? )Try to use the repair tool: dashboard > tools
What about avatar settings ? dashboard > general > discussion
About plugins
buddypress toolbar was intended for 1.5/1.6/1.7 – outdated now.
BuddyPress Members Import did you use it more as 1 time ?
On a default install, WP and BP users are in the same table: wp_users
In BP settings you can sync WP and BP users. Extended profile fields are stored in 4 other tables: _xprofile_somename
And WP has is own import tools…
IMO you can deactivate them.Deactivate all plugins, but BP and activate 2013 theme. At this stage the avatars should appear.
October 23, 2014 at 7:41 am #223908In reply to: Members Directory
danbp
Participant1) https://codex.buddypress.org/getting-started/configure-components/
3) is built in on members directory. Each profile item becames clickable by default, letting users find others having entered the same information.
Example:
User A = City -> New York (NY is clickable)
User B = City -> New York (NY is clickable)
User C = City -> San Francisco (SF is clickable)When user B click on NY he will see user A as search result
When user C click on SF he will only see himself4) He use the buddy menu. This menu can be installed by going to dashboard > apparence > menu. If BP menu is not in the left side, under the other menus, open the screen option (top right corner) and check BuddyPress. Now you can set your BP menu like any other WordPress menu.
https://codex.wordpress.org/WordPress_Menu_User_GuideWhen you’re new to something, you must read the documentation first. Also before asking on a help forum, you must search if your question wasn’t already asked and answered.
Happy install ! 😉
October 22, 2014 at 6:23 pm #223419In reply to: Reposition Extended Profile Field Descriptions
ericreynolds007
ParticipantThank you. I was able to move the code below in the edit.php file. However, I could only place it below the field input or above the field label. I cannot position it between the field label and the field input.
<div class="clear"></div> <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?> <div<?php bp_field_css_class( 'editfield' ); ?>> <?php $field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() ); $field_type->edit_field_html(); do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); ?> <p class="description"><?php bp_the_profile_field_description(); ?></p> <?php if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?> <p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>"> <?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> <a href="#" class="visibility-toggle-link"><?php _e( 'Change', 'buddypress' ); ?></a> </p>October 21, 2014 at 5:57 pm #221411danbp
Participanthi @roddaut,
don’t thought to much, a theme can influence over all a site, including the admin. This happens in 90% of the issues handled on this forum.
Thought the latest Canvas was 2014.10.14 – version 5.8.5
October 20, 2014 at 3:31 pm #220263In reply to: I cannot change the text on the Registration Page
TAC28
ParticipantThanks again 🙂
I know how to edit the Profile Fields now.
I have changed the wording in the register.php file and just want to know where to upload it so the changes will show up?
October 20, 2014 at 3:26 pm #220262In reply to: I cannot change the text on the Registration Page
danbp
ParticipantMembers are the heart of BuddyPress. When a user register on a BP activated site, this user is automatically a “member”.
So i guess “they are not registering for the site, just the members area” is just impossible. Don’t know what you already did to get a “private” member area, but if you have an issue, it’s mostly because you did something wrong. 😉
To confirm to readers what you already get to work:
To modify the registration page, on which appears the login fields belonging to WP (user, username, email & password), BP adds his own additionnal fields, under condition you activated the xProfile component.
By default, BP add only one field in the mandatory field group “Base”: NAME.
When the admin add a new field, he can choose between different field status, and depending this status, you will see phrase such as “This field can be seen by: “.
These settings are avaible in Dashboard > Users > Profile Fields
October 20, 2014 at 2:05 pm #220260In reply to: I cannot change the text on the Registration Page
TAC28
ParticipantHi and thank you danbp,
I have read the documentation but not the codex yet.
I also had read that article on the modifying the registration page but I can’t see anything relating to changing the text on the live registration page. I don’t want it to say “Registering for this site is easy….” because they are not registering for the site, just the members area. I have changed the text in the register.php file but wherever I upload it to the changes do not show up.
It did help me find the setting in Profile Fields to change the “This field can be seen by: Everyone” text to “This field can be seen by: All Members” 🙂
October 20, 2014 at 1:52 pm #220257In reply to: I cannot change the text on the Registration Page
danbp
Participanthi @tac28,
as you’re a first timer, i would suggest that you read attentively the Codex, and try to understand how BuddyPres works.
I am using a child theme based on Headway Base and have no need of a bp theme.
You can use any theme you want with BuddyPress.
Modifying the registration page is explained here.
xProfile fields settings is explained here.
October 15, 2014 at 7:09 am #213735In reply to: bp_has_members not working after update
b2marketing
ParticipantHi
Sorry had to go to bed.
Yes it is a custom profile field I created and it is working when using Buddypress 2.0.2 but updating to latest 2.1.1 then all members disappear from the loop and I just get the “else” statement saying: No members found.
I created the custom field by going to users -> profile fields.
I then use the if statement above like this. Please see gist.
https://gist.github.com/philipb2/bd689aa4b843235ec414Thanks
October 14, 2014 at 1:21 am #212524In reply to: Duplicate edit-profile groups
adamt19
Participant@shanebp in wp_bp_xprofile_fields there is only one instance of each field/question
October 12, 2014 at 6:45 pm #210720In reply to: Incorrect URL being passed
crell
ParticipantHi,
Thanks for responding.
It’s passing to an internal site URL.This link below is a recent post
http://ashbournecyclingclub.co.uk/2014/10/group-ride-monsal-headIf I then select “Edit my profile” from the menu, it takes me to:
http://ashbournecyclingclub.co.uk/2014/10/group-ride-monsal-head/1/
(note it’s appended “/1” to the end of the URLTheme is Heuman
Wordpress 4.0Plugins are:
Advanced Custom Fields
Version 4.3.9 | By Elliot Condon | View detailsAkismet
Version 3.0.2 | By Automattic | View detailsBlack Studio TinyMCE Widget
Version 2.0.4 | By Black Studio | View details | Home | FAQ | Support | Rate | Follow | DonateBuddyPress
Version 2.1.1 | By The BuddyPress Community | View detailsCategories Images
Version 2.4.2 | By Muhammad Said El Zahlan | View detailsCat Post Type
Version 1.0.1 | By Michel Bobillier aka Athos99 | View detailsComing Soon / Maintenance mode Ready!
Version 0.5.3 | By coming soon | View detailsContact Form 7
Version 3.9.3 | By Takayuki Miyoshi | View detailsContact Form DB
Version 2.8.16 | By Michael Simpson | View detailsCustom Facebook Feed
Version 2.1.2 | By Smash Balloon | View detailsEnhanced Media Library
Version 1.1.2 | By WordPress UX Solutions | View detailsEvents Manager
Version 5.5.3.1 | By Marcus Sykes | View detailsJetpack by WordPress.com
Version 3.1.1 | By Automattic | View detailsLeaflet Maps Marker
Version 3.9.2 | By MapsMarker.com e.U. | View detailsLimit Login Attempts
Version 1.7.1 | By Johan Eenfeldt | View detailsMaps Marker Pro ®
Version 1.9 | By MapsMarker.com e.U.NextGEN Gallery by Photocrati
Version 2.0.66.29 | By Photocrati Media | View details | Get help | ContributePost Css Class
Version 1.0.1 | By Michel Bobillier aka Athos99 | View detailsQuick Featured Images
Version 8.2.1 | By Martin Stehle | View detailsRegenerate Thumbnails
Version 2.2.4 | By Viper007Bond | View detailsTinyMCE Advanced
Version 4.1.1 | By Andrew Ozz | View detailsTypes – Complete Solution for Custom Fields and Types
Version 1.6.3 | By OnTheGoSystems | View detailsWordfence Security
Version 5.2.6 | By Wordfence | View detailsWordPress SEO
Version 1.6.3 | By Team Yoast | View detailsWP-PageNavi
Version 2.86 | By Lester ‘GaMerZ’ Chan | View detailsWP FullCalendar
October 11, 2014 at 1:35 pm #2100111a-spielwiese
ParticipantThe problems are still unresolved:
++ Cfr. regarding problem A. (Making xProfile fields required only for members with a certain user role):
https://wordpress.org/support/topic/making-bp-xprofile-fields-required-for-certain-user (posted today)
++ Hide theses xProfile fields for members with other user roles:
https://wordpress.org/support/topic/bb-xprofiles-acl-does-not-work (posted one week ago)
++ Cfr. regarding problem D. (Making answers unchangeable):
https://buddypress.org/support/topic/how-to-make-some-xprofile-field-to-uneditable/#post-206808 (posted two days ago).
October 9, 2014 at 9:03 am #207682In reply to: Profile fields for locations within a country
Kris35
ParticipantHi @1a-spielwiese,
Thanks for this. I had a look on your registration page where you have a few countries for members to select, but when I choose one, the same dropdown menu appears. Im not using any plugin at the moment – just the extended profiles in the components of Buddypress at the top of the list which includes checkboxes for activity streams, friend connections etc. I don’t want to use a plugin that hasn’t been updated in two years either.
If I go to Users>Profile fields, this is where I was hoping to do this but the only way I can see to do it is to add, UK, then a list of counties. USA and then a list of states, and so on which would mean I would have a list a mile high of all the different countries and local areas.
Am I missing something?
Thanks a bunch,
Kris
October 8, 2014 at 9:22 pm #207115In reply to: Profile fields for locations within a country
1a-spielwiese
ParticipantA less elegant, but working solution regarding locations within states you can find on my registration page (section: ‘Profile Details – Teil III: Geographisches’):
http://1a-spielwiese.de/registrieren/
You can ask at first:
- In which state (USA or UK?) do you live?
- In which US-federal state respec. in which UK-county to you live?
- and finally you can introduce the names of the federal states of the USA with ‘US-‘ and the names of the counties of the United Kingdom with ‘UK-‘.
and then:
(You can ask this questions within the ‘base group’ of your xProfile fields – then they get displayed on your registration page automatically. Or you can make your further xProfile fields displayed on your registration page as well:
https://buddypress.org/support/topic/reshaping-the-registration-page/#post-203615 [section 2nd].)
October 8, 2014 at 9:00 pm #207114In reply to: Profile fields for locations within a country
1a-spielwiese
ParticipantYes, there should be a way, but I was not able to follow the instructions / to realise that way.
The basic idea is:
- Create two (or more) new WordPress user roles, e.g.: Users-UK and Users-USA.
- Then you can assign one xProfile-field, ‘In which [federal] state do you live?’, exclusively to your users with the user role Users-USA; and another x-Profile, ‘In which county do you live?’, to your users with the user role Users-UK.
—
The instructions for that solution you find there:
https://buddypress.org/support/topic/resolved-different-profile-types-and-different-user-roles/
(The user roles there are ‘bands’ and ‘fans’).
And my report about my attempt to apply that instructions you find there:
https://buddypress.org/support/topic/different-profile-types-and-different-user-roles-part-ii/
My user roles are (sport) ‘teams’ and ‘fans’.
—
But unfortunately, I was not able to hinder, that ‘fans’ get displayed the questions (xProfile-fields) for ‘teams’ was well; and the ‘teams’ the questions for ‘fans’…
—
Further problem:
Even if there is a solution regarding later profile edits – even complicate seems to be, to make already the registration page “input senstive”, because during registration the new user isn’t yet registered (i.e.: has no user role yet).
Cfr. there:
http://forum.wpde.org/buddypress/133961-registrierungsseite-umgestalten-anleitung-und-fragen.html (section 4. – unfortunately in German).
October 8, 2014 at 1:26 pm #206290danbp
ParticipantTo make a field uneditable, you can remove it from the edit page of each profile.
You just have to enter the file ID, separated by coma if necessary to hide more than one.Add snippet to child-theme functions.php or bp-custom.php
function bpfr_make_profile_field_uneditable( $retval ) { if( is_user_logged_in() && bp_is_profile_edit() ) { $retval['exclude_fields'] = '20,21,22'; // field id's } return $retval; } add_filter( 'bp_after_has_profile_parse_args', 'bpfr_make_profile_field_uneditable' );Reference:
October 8, 2014 at 1:03 pm #2062841a-spielwiese
ParticipantFor me also not:
I tried it with
Mitglieder-Kategorie (Team oder Fan?)instead of
'name of your field'as well as with
'Mitglieder-Kategorie (Team oder Fan?)'But my users can still change the values for this field. –
I tried as well – already before and now again – this code of @noizeburger:
//hide the user role select field in edit-screen to prevent changes after registration add_filter("xprofile_group_fields","bpdev_filter_profile_fields_by_usertype",10,2); function bpdev_filter_profile_fields_by_usertype($fields,$group_id){ //only disable these fields on edit page if(!bp_is_profile_edit()) return $fields; //please change it with the name of fields you don't want to allow editing $field_to_remove=array("User Role"); $count=count($fields); $flds=array(); for($i=0;$i<$count;$i++){ if(in_array($fields[$i]->name,$field_to_remove)) unset($fields[$i]); else $flds[]=$fields[$i];//doh, I did not remember a way to reset the index, so creating a new array } return $flds; }It works neither with
"Mitglieder-Kategorie (Team oder Fan?)"nor with
Mitglieder-Kategorie (Team oder Fan?)nor with:
'Mitglieder-Kategorie (Team oder Fan?)' -
AuthorSearch Results