Search Results for 'profile fields'
-
AuthorSearch Results
-
May 7, 2012 at 7:18 pm #134129
In 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 #133532fmeroney
Member@mercime so i fixed it by decativating, deleteing, and reinstalling BP. Everythings kosher so far.
Thanks,
April 25, 2012 at 12:46 am #133523@mercime
ParticipantMore of the outdated plugin issue and possibly a theme issue, not sure. The best thing is to set up BuddyPress and check everything out using bp-default theme without other plugins activated. When everything’s doing as expected, only then do you change to custom theme and add on plugins (only those which have been upgraded to current WP/BP versions). That way, you’ll know when anything goes wonky and can fix it asap. Only my 2 cents.
April 24, 2012 at 11:16 pm #133517fmeroney
Member@mercime now i understand what you meant, i did try the BP default theme, no luck. I may need to revert to my backup. I have a developer working on the fix now. Any ideas, could this be a BP & WP issue?
April 24, 2012 at 9:38 pm #133514fmeroney
Member@mercime yes sorry that is a typo. I did deactivate it with no luck. I also deactivated BP and reactivated it with no luck. How do I change to bp-default?
April 24, 2012 at 8:26 pm #133506@mercime
Participant@fmeroney just to clarify, you mean you updated to WP 3.3.2 and WP 3.2.2 was just a typo, right?
Looks more like Buddypress xProfiles ACL plugin needs to be updated. If deactivating xProfiles ACL doesn’t cut it, change to bp-default to see if issue is corrected.
April 24, 2012 at 4:24 pm #133488In reply to: How to limit the characters of the profile bio.
shanebp
ModeratorYou mean the description field ?
That’s tougher. How good are you at php ?
afaik – you need to modify the
/themes/your-theme/members/single/profile/edit.phpYou won’t see a form field for ‘description’
BP uses bp_get_the_profile_field_type() to show fields.
So you need to do an ‘if’ on the bp_the_profile_field_input_name()
And then use javascript to limit the number of chars allowed – lots of examples of this online.April 23, 2012 at 12:33 pm #133433temmy
MemberThanks Paul, I’ve been able to add the extra fields as suggested and displayed them on members page using echo bp_member_profile_data(‘field=the field name’); in members-loop
April 22, 2012 at 3:29 am #133381In reply to: Collate Custom Profile Fields Data
Scorpiion4984
Member@mercime Thank you
April 21, 2012 at 3:40 am #133343In reply to: Collate Custom Profile Fields Data
@mercime
ParticipantThere’s no member/xprofile exporter compatible with BP 1.5.5 at this time. There’s the outdated https://wordpress.org/extend/plugins/bp-export-users/ but it’s good up to WP 3.1.4 and BP 1.2.8 only which a plugin developer could check out and should revise to be compatible with BP 1.5.5.
You can probably start off by exporting the tables from your database: wp_bp_xprofile_data; wp_bp_xprofile_fields; wp_bp_xprofile_groups and wp_bp_xprofile_meta but the best bet is to have a developer set this up
April 21, 2012 at 2:44 am #133342In reply to: Collate Custom Profile Fields Data
Scorpiion4984
MemberCan anyone help with this please?
April 20, 2012 at 10:58 am #133283Paul Wong-Gibbs
KeymasterIs there a reason why you don’t want to use BuddyPress’ Profile Fields? You wouldn’t have to write any code. (wp-admin BuddyPress > Profile)
April 20, 2012 at 10:26 am #133278In reply to: bp_get_profile_field_data in group members loop
g1r2e3g
MemberHi Chris… In the list of group members it as default has Name & Last activity…. But instead I want to display name and a couple of profile fields… in the members loop you can use bp_get_profile_field_data() but it wont work in the group loop
April 20, 2012 at 10:08 am #133276In reply to: bp_has_members filter type=online is not working
hridaya
Member`
<?php
/*
Template Name: Who is online
*/
?><?php
get_header();if ( bp_has_members(‘type=online&per_page=30’)) : ?>
-
<a href="”><?php
$image_status=””;
if(is_user_online(bp_get_member_user_id())){
//$user_info = get_userdata($postcontent);
$image_status= ‘
‘;
}
else {$image_status= ‘
‘;}
echo $image_status;
?>
<a href="”>–
<?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 regadless of the number of fields you show):
*
* bp_member_profile_data( ‘field=the field name’ );
*/
?>
`
April 19, 2012 at 1:04 pm #133227Hugo Ashmore
ParticipantThe devil is in the detail if asking for help, please provide it initially rather than us having to ask for it!
April 19, 2012 at 6:37 am #133221@mercime
Participant== I set up a membership setup page with custom fields? ==
Is this via a plugin or did you mean the fields you added in BuddyPress > Profile Fields?What do you mean by “none of the info she input in the fields is available”? Doesn’t show up when you open up her profile page? What theme are you using?
BP/WP versions? What theme are you using? What plugins are activated in your installation?
-
-
AuthorSearch Results