Search Results for 'profile fields'
-
AuthorSearch Results
-
May 23, 2012 at 9:48 pm #134994
In reply to: Search Member / Profile fields by URL?
kaformedia
ParticipantOk where do you put the code and how can we make it for role.
May 23, 2012 at 7:49 pm #134990In reply to: Search Buddypress Members by Role
kaformedia
Participant@sushkov would you might know? I think this is close right – https://buddypress.org/community/groups/creating-extending/forum/topic/solved-limit-members-loop-by-profile-fields/
May 23, 2012 at 7:24 pm #134987kaformedia
Participantmembers or s2members plugin should work along with xprofiles acl plugin to assign profile fields
May 23, 2012 at 2:21 am #134937mrjarbenne
ParticipantIn the Buddypress Settings menu, do you have the “Disable BuddyPress to WordPress profile syncing?” set to “No”?
May 22, 2012 at 7:54 pm #134895In reply to: Interactive Profile Fields During Registration
jaimebib
Participantanybody have any idea how to solve this issue….?
May 22, 2012 at 3:05 am #134839In reply to: Questions about creating auto fill profile fields
violet914
MemberThanks so much for your help! I have begun to explore the drop down menu strategy, however I don’t know how I will manually enter 230,000 schools into the drop down field. Is there a way to do this quickly? For example, perhaps I can just upload the entire list somehow? Thanks again!
May 22, 2012 at 2:09 am #134833In reply to: Questions about creating auto fill profile fields
yadigit
ParticipantHello, im going to tell you a quick easy way to do step number 1.
Create a field called School or w.e you want to make it and make a drop down field of all the schools that you can think of.I would also download buddyprress-better-directory ( it may not scale well with your theme depending on what theme you are using )
so now onto question number 2. As I said for your answer for number one, using the drop down menu for the schools will make it easier to search rather then having the members type in their school. as far as searching for UNC and University of North Carolina, Im sure the search would list all the UNC first, then list the University of North Carolina,
I would also suggest installing s2Members (plugin) and follow the steps to help make your buddypress/wordpress more secure,
@vuiet914
Best of Luck,
Ps, this is just a suggestion and it really isn’t a FULL answer to your questions.May 19, 2012 at 11:57 pm #134791In reply to: Problems w/BP Install on single domain
w84me
MemberI turned off all plugins except BuddyPress, but my results are the same. I checked settings, permalink, etc., but the only thing that’s working is user registers, but profile is not created, user is not redirected to profile, and none of the pages are being created. I added fields to profile page and the fields did not display. Can someone help please? Thanks!
May 16, 2012 at 7:55 pm #134674In reply to: Interactive Profile Fields During Registration
bojan85
ParticipantMay 15, 2012 at 9:50 pm #134622In reply to: Search Member / Profile fields by URL?
shanebp
ModeratorI’d approach this a different way –
something like:
`
$match_ids = $wpdb->get_var( “SELECT user_id FROM wp_bp_xprofile_data WHERE field_id = [whatever the field_id is for State] AND value = [whatever value you want to find] “);
`$match_ids will be a simple array.
So loop thru the array and create a comma separated string out of the ids.
Then pass the string to bp_has_members() using ‘include’something like
`
//$get_these_members is the id string you created
$get_these_members = ‘include=’ . substr($get_these_members, 0, -1); //trim the last commaif ( bp_has_members( $get_these_members ) )
`That way you could search for any value on any profile field.
Your approach might work, but… yikes.https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/
May 15, 2012 at 9:21 pm #134621In reply to: Search Member / Profile fields by URL?
yoramz
Memberi’m looking for the same things to do with my site.
did you find a solution for that?May 15, 2012 at 8:44 pm #134620In reply to: Interactive Profile Fields During Registration
jaimebib
Participant@bojan85 tried to work with this plugin aswell but seems non functional..anybody involved in developing for bp who knows if this is even possible to do? Seems like a very basic function that should be included…
May 15, 2012 at 7:46 pm #134618In reply to: Interactive Profile Fields During Registration
Sabrin_N
ParticipantOMG, this is almost what i need
do you already have it working @davidveldt ?what i need is:
you have the registrationform, the only things i want visible is Name and Email. and then i would like to have a selectbox with 2 options: Company or Student.
When you register as a company and then login you go to the company profile side. if you are a student then you go to the student profile side. The 2 profile have different profile groups to fill out.
how can i do this?
May 12, 2012 at 11:31 pm #134437In reply to: Request: Secured Profiles Option
energynet
ParticipantNot sure how to ensure that it doesn’t conflict. Here’s the EE profile-loop.php page below… Since I’m a bit new to this, I could certainly copy the original profile-loop.php file into the child theme, but am a bit concerned about me just pasting this new code into it as I don’t know how to identify conflicts other than it not working etc.
`<div class="bp-widget “>
<tr>
`
May 7, 2012 at 7:18 pm #134129In reply to: Search Member / Profile fields by URL?
perywinkle
ParticipantThe other option I’ve been toying with is creating the State values: as Idaho_state ( more specific search term )
Then display state as “Idaho” ( in the profile ) with some php:
if value “Idaho – ID”
echo “Idaho”May 2, 2012 at 12:07 pm #133849In reply to: How to hide profile fields
Paul Wong-Gibbs
KeymasterI would suggest creating a new profile field group for this sort of field, and put some logic into the appropriate theme template to not show fields in that group.
May 2, 2012 at 6:06 am #133841In reply to: How to hide profile fields
maylene
MemberI’d be interested in this as well.
May 2, 2012 at 2:28 am #133828In reply to: SPAM ON ACTIVITY PAGE!
jonnylons
ParticipantThis is exactly what I have been trying to find an answer to. No one has seemed to provide a straight answer but this goes a long way. Thanks guys. I think I will reference this and work on this problem myself, too, and provide some feedback.
I think (not sure!) that one of the ways you can stop spam is to put required fields on the profile that utilize human input. Requiring fields like favorite color, or something where people have to actually input something may be helpful to slow down spam. At least, that’s a theory. Anyone have anything like that or provide some feedback on this theory?
April 30, 2012 at 11:12 pm #133779In reply to: Custom profile fields with drop down menus
ajm845
MemberAssuming I have the list in an excel worksheet, I would like to know if it is possible to add that feature to my registration page.
April 30, 2012 at 12:08 pm #133746In reply to: Let users create their own xprofile fields
Hugo Ashmore
ParticipantGo with Paul’s second suggestion, you could make it a simple text input and instruct the user to add items comma separated and then grab the field and run an explode function on the comma to get a list you can loop over and display.
April 30, 2012 at 11:53 am #133745In reply to: Custom profile fields with drop down menus
Paul Wong-Gibbs
KeymasterI don’t know about date range, but for your dropdown box, you would have to manually build that list of universities yourself.
April 30, 2012 at 11:52 am #133744In reply to: Let users create their own xprofile fields
Paul Wong-Gibbs
KeymasterThe easiest would be for you to create multiple profile fields (job 1, job 2…) and prompt users to leave blank if not appropriate.
Another approach is to use a text area (one job per line), and then customise the output of this particular field to display how you wanted it to.
xprofile wasn’t built with the idea of letting *users* (vs admins) creating new profile fields. I think trying to do this would be full of difficulty so I’d recommend against it.
April 27, 2012 at 7:45 pm #133669In reply to: Registration Form
@mercime
Participant== how do you get that field to upload into that users profile? ==
Profile fields show up in member’s profile page by default. What else do you mean by upload into users profile?April 25, 2012 at 1:49 pm #133559@mercime
Participant== I would like to be able to track the members and the dates that they lost the love one ==
@enjoywellbeing You can create profile fields for a) date when their loved one was born and b) date died. Then make the fields required.
== I am looking for an easy theme to use for this purpose ==
I would suggest using the default bp-default theme while you’re building your site and adding plugins so you can know that if anything goes wonky, it could very well have been caused by the plugin, etc.
When you’re close to launching the site, you can use a WordPress theme and use BP Template Pack plugin to transfer BP template files and JS goodness. If you need assistance in fixing alignment, check out the list of WP themes we’ve “Template-Packed” so far.
April 25, 2012 at 2:57 am #133532 -
AuthorSearch Results