Search Results for 'profile fields'
-
AuthorSearch Results
-
March 28, 2011 at 2:02 pm #108928
In reply to: Hiding empty xProfile fields in member-header.php
Bowe
ParticipantYou can read the post here:
http://bp-tricks.com/snippets/displaying-certain-profile-fields-on-your-members-profile-page/
March 28, 2011 at 1:26 pm #108926In reply to: Hiding empty xProfile fields in member-header.php
Boone Gorges
KeymasterSweet!
March 28, 2011 at 1:23 pm #108925In reply to: Hiding empty xProfile fields in member-header.php
Bowe
ParticipantWorks absolutely perfect Boone.. I’ll put it up on BP-Tricks as well.. this is useful stuff! Thanks!
March 28, 2011 at 12:53 pm #108922In reply to: Hiding empty xProfile fields in member-header.php
Boone Gorges
KeymasterProbably the most efficient way is to do something like this (not beautiful to put in a template file, but functional and lean):
`
Occupation:`
March 23, 2011 at 6:02 pm #108558In reply to: Zebra styling Profile Page
ultimateuser
Participant@r-a-y – Ok but they are basically the non-required fields members leave blank when registering.
I’d like to apply the second patch as well but then I come back to my initial question:
“I do not have the file bp-xprofile-template.php on my server. Although I do have bp-xprofile-templatetags.php?”
Can you also include a link to the entire amended file I need to use?
March 18, 2011 at 7:21 pm #108182In reply to: Custom fields for BP groups?
Youraj Pawar
ParticipantI strongly feel using this documentation you can achieve what you want.
https://codex.buddypress.org/developer-docs/group-extension-api/And this should help you with manipulating navigation items in group , renaming them or removing them. (At midway of page)
http://themekraft.com/2011/02/customize-profile-and-group-menus-in-buddypress/And this for custom fields (Not sure how much this will help for groups)
http://wparena.com/how-to/the-power-of-wordpress-custom-fields/bye
March 16, 2011 at 1:05 pm #107969noizeburger
ParticipantHave you tested the solution I’ve mentioned? Just for your interest: I set up a naked wp 3.1. (single) with buddypress 1.2.8, BuddyPress xProfiles ACL, Capability Manager and WP Roles at Registration – works like a charm and requires no coding by hand.
March 15, 2011 at 8:45 am #107849noizeburger
ParticipantPS: I often think about switching to single installation of wp, your combination of plugins would be the only one working, as described by the author of the stuff in my links. So I don’t have to think about switching again.
March 15, 2011 at 8:43 am #107848noizeburger
ParticipantMaybe you should try this solution: works for wp3.1 multisite, also there are hints when working with single-site. I have it working on my multisite (but with the old code example).
The first link shows you how to make a selection for roles at signup: http://cleverness.org/2011/01/27/updated-buddypress-user-roles-code/
The second link is for the setup of which profilegroups (fieldgroups) are shown on certain roles: http://cleverness.org/2010/10/13/user-types-in-buddypress-assign-xprofile-groups/Give it a try, it works for me.
March 15, 2011 at 3:20 am #107833In reply to: bp_get_the_profile_field_input_name() field name?
Virtuali
Participantbp_get_the_profile_field_input_name() just gets you what they have imputed in the name. As easily read by the statement.
Why are you trying to input in the file? Just go to your admin section of buddypress, and add “Country” as a new text box for the form.
Unless your trying to put it in core fields?
P.S, for future, check this out: Rich has a Great Directory for other Action Hooks, just like above: http://etivite.com/groups/buddypress/hooks/search/component/?c=bp-core
March 11, 2011 at 5:05 pm #107550just2izy
MemberI am also having a similar error and Yes @djpaul it is the same Lines. I am also using custom fields but I have 3 groups, the group having the problem has only checkboxes and is a required field.
`
Warning: trim() expects parameter 1 to be string, array given in C:xampphtdocsashantibar.orgwp-contentpluginsbuddypressbp-xprofile.php on line 717Warning: Cannot modify header information – headers already sent by (output started at C:xampphtdocsashantibar.orgwp-contentpluginsbuddypressbp-xprofile.php:717) in C:xampphtdocsashantibar.orgwp-includespluggable.php on line 897
`March 11, 2011 at 2:53 pm #107538Hugo Ashmore
ParticipantBuddyPress users are essentially WP users there’s no separation and in this and other respects BP is a plugin running under WP and thus using aspects of WP such as users/signups
Buddypress has extended profiles that can be set in the dashboard under the BP menu there you can add new fields to the base group (base group fields are displayed on the initial signup page) or create new filed groups for anything you like and those will be displayed on the users profile screens and accessed under ‘edit profile’ by the user to complete.
As an admin you are very limited as to what you can set on a users profile, basically being restricted to the capabilities under the WP dashboard ‘users’ and ‘add users’
March 10, 2011 at 8:13 am #107382In reply to: How on earth did I do this?
Paul Wong-Gibbs
KeymasterBy default, all profile fields which you’ve put into the first (default) profile field group will appear on the registration template.
March 9, 2011 at 6:36 pm #107325maesutsuro
MemberDid you proceed with it? I need the same thing but i’m unfortunately not good at coding
March 7, 2011 at 1:36 am #107015In reply to: How do I add a menu item on the profile page?
Virtuali
ParticipantJust creating new profile page category from my understanding??? Just to go your buddypress admin page under profile setup and create new fields there, no need to hook anything.
P.S, why on your activity page is the header content below the avatar? Go into your theme’s CSS file and remove
`div#item-header div#item-header-content {
float:left;
}`To clear things up, it should look a-lot nicer.
March 5, 2011 at 9:15 am #106883In reply to: Purely Genius Way to Add Custom Profile Fields
Hugo Ashmore
ParticipantIt’s a syntax error so you need to examine the line it’s referring to and check and correct the syntax php met an unexpected double quote mark and seems to be suggesting there ought to have been an ) closing parentheses. this is an extremely old post you have dragged up and I would expect this plugin/code to necessarily work given the version updates to BP since this was written.
btw editing core files in this manner is not advised really, if it’s a filter it ought to be written to a functions.php file living in a child theme
March 5, 2011 at 8:46 am #106880In reply to: Purely Genius Way to Add Custom Profile Fields
richiedupe
MemberHello, Im pretty new to php and i pasted the custom profile code into my bp-xprofile-filters.php file, and it killed my site, i just get the error: Parse error: syntax error, unexpected ‘”‘, expecting ‘)’ in /home/richied/plainprofile.com/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-filters.php on line 158
i tried deleting and re-installing buddypress but im still getting it! site url is: plainprofile.com
Any help would be HUGELY appreciated!!!!
March 4, 2011 at 7:04 pm #106824jakeL
MemberI am definitely interested in this too. Taking it a step further, it would be nice to make users complete a full profile for the site after logging in through Facebook. Right now the WP-FB-autoconnect works great, creates the user and logs them in – but then it brings them back to the homepage without filling out the rest of their profile.
When you create an account in BP without logging in through facebook, the BP registration page asks users to complete all the required and optional fields in the profile – but I haven’t found a way to do this with Facebook, it just gives them a user name and logs them in. So I think what would need to happen is that after the facebook connect, the registration process isn’t complete – it points them back to the BP registration page (or something like it) where they can finish entering other required and optional fields.
Any ideas on how this might work?
A workaround might be that on the *first* login only, the user is redirected to the edit profile page, and on subsequent logins they’re redirected to the homepage and logged in normally.
March 3, 2011 at 7:50 pm #106744In reply to: admin-editable-only Profile Fields
clinthorner
MemberI have the same requirements. I guess I am not advanced enough to use the solution posted above. I tried messing with the solution above but am really getting nowhere. Can you elaborate on this? Does anybody else have a solution?
March 2, 2011 at 5:48 am #106650In reply to: Can a plugin create custom profile fields?
Paul Wong-Gibbs
KeymasterTake a look at xprofile_insert_field() in xprofile.php
February 24, 2011 at 8:33 pm #106168In reply to: How to create more fields in a group?
r-a-y
KeymasterNo plugin exists for this at the moment.
This has to be manually coded. If you’re a plugin developer, check out this codex article:
https://codex.buddypress.org/developer-docs/group-extension-api/And also check out the groupmeta functions in /bp-groups.php.
There are a few threads about this on buddypress.org. I’d suggest doing a search on Google.
An example can be found here:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/profile-fields-for-groups#post-78706February 24, 2011 at 8:09 pm #106159In reply to: Adding Custom Fields to members-loop.php doesnt work
eliasbr
MemberIt should be
`echo bp_member_profile_data(‘field=province’); `February 24, 2011 at 2:35 pm #106140In reply to: xprofile slugs for search
Dave Wright
ParticipantAnd another bump!
I am still stuck on this, searching specific x-profile fields and excluding others
PLEASE HELP!!!February 23, 2011 at 12:47 am #106007In reply to: Am I Breaking Something? Is There An Easier Way?
ssmith2
MemberJust started up Buddypress and Easy Albums. All ok except for no ability for a visitor / friend to ’register’, ’create account’ or ’sign up’ in the Members fields.
I have icons of Newest – Active and Popular but nothing for visitors to register and create profile. Currently I am the only one listed on site as a member with ability to create / edit my profile. Am I missing something obvious?
Can someone tell me where to start at getting a registration Sign up function operating?February 16, 2011 at 2:50 am #105506i_banks
Member“I don’t believe it does anything in BuddyPress itself.”
I’m sorry, I don’t understand what you mean with this line. From my understanding, every action has a function associated with it somewhere in the BuddyPress files. The line `do_action(‘bp_after_signup_profile_fields’)` (in the register.php file), seems like it does something like in the registration process…maybe some sort of an evaluation to make sure the user is ready for the next step…whatever that something is I’m trying to figure it out…
Now, I’m not familiar with “grep” and never used it. You say that it’ll tell me all of the instances of that text. Does that give me the function(s) associated with that action?
-
AuthorSearch Results