Search Results for 'profile fields'
-
AuthorSearch Results
-
April 18, 2012 at 2:48 pm #133181
In reply to: [Resolved] Profile fields visible even to anonymous
truden
ParticipantThank you for the advise, @neiloughton.
I know that the plugin can restrict from all and allow only friends, but best for our web site is to show information to all registered users and hide it from anonymous and bots
People are searching in our web site for o-negative blood donors and after they register, they should be able to see the information without becoming friends.
It is a matter of urgency and the minutes count.I know the plugin which you suggest, but that doesn’t work with our type of community.
April 18, 2012 at 2:34 pm #133180In reply to: [Resolved] Profile fields visible even to anonymous
neiloughton
ParticipantHello,
Within that plugin you can set it (without having to modify the plugin) to just to friends, private or public, this is done from within the plugin page within wordpress, this then allows the user to chose on the front end.
I might also suggest,
http://bp-tutorials.de/2010/09/private-buddypress
This plugin makes your whole install private to non logged in users, thus creating another layer of privacy.
I hope this helps somewhat.
April 17, 2012 at 4:02 pm #133139In reply to: HTML in button fields
shanebp
Moderator>You cannot use PHP in the button url field, only HTML.
You mean the onClick parameter?
Why not? Something like
`
global $bp;
$this_url = $bp->loggedin_user->domain . ‘profile/edit/group/1’;
<input type=button onClick="location.href=''” value=’edit profile’>
`I prefer to use this approach
`<a id="some-other-value" href="” title=””>`
If you want to include a nonce, it’s a bit more complicated.
April 17, 2012 at 3:50 pm #133138In reply to: Registration on Homepage
sammygone
MemberHey VeeBee and karmatosed
Just to update – I made a page template and copied and pasted the contents from register.php into the template file, nothing showed up, then i changed put this on top of the template file:
`<?php
global $bp;
if(empty($bp->signup->step))
$bp->signup->step=’request-details’;
?>`as mentioned here http://buddydev.com/forums/topic/move-registration-to-index-page#post-4235
and the form shows up but the profile field with Name does not, and after inputing data into the fields that do show up and hitting Complete Sign Up just redirects me to the same page.
Here is the page : http://lcfacademy.com/registeree/April 17, 2012 at 3:40 pm #133137bjkitchin
ParticipantI found this plugin to also be helpful, particularly at identifying the field names very clearly.
https://wordpress.org/extend/plugins/navayan-csv-export/
Simply install, go to tools, find the wp_bp_xprofile_data and wp_bp_xprofile_fields and export.
Actually with that info you can do quite a bit. But I think the profile fields is a great reference to complete the code array( above.
Warm regards,
BJ
April 17, 2012 at 5:13 am #133114In reply to: Rearranging Extended Profile fields
April 17, 2012 at 5:07 am #133113In reply to: Rearranging Extended Profile fields
@mercime
ParticipantThe profile labels and data are rendered in table rows. You could copy over the profile-loop.php file to your child theme folder /themes/childtheme/members/single/profile/profile-loop.php and change the table/rows/columns into divs/spans etc.
April 16, 2012 at 4:13 pm #133088aces
ParticipantApril 16, 2012 at 2:29 pm #133082Hugo Ashmore
ParticipantIs there any reason why you can’t have both/all fields on the initial signup and let the user choose which they complete? Fields required to display on registration need to go in the ‘Base’ group.
April 14, 2012 at 5:02 pm #132957gwu123
ParticipantI do not want to completely turn this off. Instead, I want to disable this only for specific profile fields. How can I do that?
April 13, 2012 at 11:59 pm #132939Norm1
MemberThank you!
April 13, 2012 at 11:45 pm #132938April 12, 2012 at 3:55 am #132854In reply to: Allowing Users to create profile pages
mrjarbenne
ParticipantBy default everyone has a profile page within a Buddypress site under domain.com/members/username. You can edit the information that gets added to that profile in Buddypress/Profile Fields. If you want to centralize the community around the profile you can add something like this: http://buddydev.com/plugins/bp-redirect-to-profile/ which would redirect your users directly to their profile when they log in.
You could also allow them to customize the background of their profile with this if you really want to go wild: http://buddydev.com/buddypress/allow-your-users-to-change-their-profile-page-background-using-bp-custom-background-for-user-profile-plugin/ although that has the potential to get really ugly.
April 11, 2012 at 8:14 pm #132846In reply to: mapping custom user fields to environment variables
meatloaf
MemberSorry, as you can tell I’m trying to troubleshoot an already configured WP/BP that I’m not familiar with. A sample URL would be:
http://bp.mydomain.org/members/first-last/profile
Not sure how to tell if it’s a custom theme, or something purchased…
April 7, 2012 at 10:50 pm #132643In reply to: Profile Fields becomes URL link
xcentriq
MemberThanks Chris. That would help a lot. Do you know if that works with the latest wordpress? 3.3.1?
April 7, 2012 at 3:23 pm #132609In reply to: Profile Fields becomes URL link
@ChrisClayton
Participantfix? It’s like that by design, it allows a user to search for other .users with similar interests..
However, if you want more control – Their’s a plugin for that. (we should seriously steal apples “theirs an app for that” marketing.)
https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/April 7, 2012 at 3:27 am #132596In reply to: Interactive Profile Fields During Registration
bojan85
ParticipantCould this plugin be the solution for this problem? https://buddypress.org/community/groups/buddypress-conditional-profile-field/
Anybody got this plugin to work? Seems non-functional to me…
April 5, 2012 at 4:31 pm #132510In reply to: Hiding Profile Fields
fmeroney
MemberThanks Chris, I will dig in.. and let you know what I get!
April 5, 2012 at 4:11 pm #132507In reply to: Hiding Profile Fields
@ChrisClayton
Participant1. Can I control what fields are visible during registration?
By default everything within the ‘base’ profile group is shown in the registration field, you can mess around with the stuff within the registration template, removing the call to the base group and then adding the required fields in manually… but your better off just moving things you don’t want on the register page into other groups.2. Can I control when certain Profile fields are displayed in the Profile Section?
Sure can. https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-profile-data-loop-bp_has_profile/
3. Can I control when certain Profile Group Fields are displayed?
See codex link above.The profile data loop includes two loops, one for the fields and another one for the field groups.April 3, 2012 at 8:48 pm #132355In reply to: Automatic linking in profile fields
words2us
MemberThank you, aces, I’ve sorted that now.

Although, interesting question by zanzaboonda. Some people would want to do that, I suppose.April 3, 2012 at 7:37 pm #132352In reply to: Display avatar following gender in xprofile fields
chr313
MemberI would like to have this, but I want to also upload my own avatars in random order out of a list of say 10 different avatars. Similar to what wavatar does but I want my own images.
April 3, 2012 at 12:00 am #132298In reply to: [Resolved] Is this the correct Registration Page?
@mercime
Participant== I tried to create a group name under profile setting, But it can’t allow me to create one ==
First, in your new test site, do not activate any plugin except BuddyPress; and only use the bp-default theme.
Just so we’re on the same page, when you say you created a “group name”, do you mean you clicked on the button “Add New Group”? Only the fields you create in the base group will show up in the registration form.
Test: click on “Add New Field” as seen here https://codex.buddypress.org/getting-started/configure-buddypress-components/#bp-xprofiles then add a field with description and save. Log out. Then clear cache and go to registration page.
April 2, 2012 at 12:42 pm #132273In reply to: Problem editing xprofile fields
claudeg
ParticipantAs I said, I’ve tried to desactivate all plugin except Buddypress.
Common plugins related to Buddypress on those site: BpDev Stealth Mode for Site admin, BP Group Management, BuddyPress Group Email Subscription, Events Manager, U BuddyPress Forum Attachment.
I only see one thing that may have made a difference: before I’ve reverted the primary field to its original state (Name), I was using a different name (Prénom et Nom). Usually this primary field was related to the WordPress field “Name to be displayed publicly” (or something like that). Can it make the data not beiing save because it can’t find the user’s related ID? (It is only speculation, I have no understanding of how it works) And if so, how can I reverted this primary field data value? Deleting it from the database and recreating it?
ThanksApril 2, 2012 at 6:34 am #132268In reply to: Problem editing xprofile fields
Paul Wong-Gibbs
KeymasterWhat other plugins are you running?
April 2, 2012 at 3:55 am #132261In reply to: [Resolved] Is this the correct Registration Page?
@mercime
ParticipantThis plugin works in thousands of sites. Re-reading your previous posts, have you checked whether you can add profile fields in BuddyPress > Profiles in base group? Have you contacted your host’s tech support and/or checked your forums re any issues about BuddyPress installations?
-
AuthorSearch Results