Search Results for 'profile fields'
-
AuthorSearch Results
-
April 12, 2010 at 10:51 am #72933
In reply to: Anyone else working on integrating Gigya?
rsqst
ParticipantI agree with @dennis_h,
Gigya has some great (stable) plugins it would be nice to see this adjusted for BP. It sort of works. It will get them logged in, but its setup for WP so everything goes to the WP profile pages and not BP. I would say moding this would be ,much easier than try to make a stable version from scratch.
If this plugin would let you map FB profile info into xprofile fields, it would be exceedingly useful.
April 12, 2010 at 6:01 am #72818stwc
ParticipantIf it’s on registration, work with a child theme as described in this thread: https://buddypress.org/forums/topic/adding-some-text-to-the-signup-form
Then just prepopulate the fields (assuming it’s static info for all registrants) using standard forms HTML stuff.
If it’s dynamic info, well, same first step, but after that, I’m out of my depth!
April 12, 2010 at 6:01 am #72918stwc
ParticipantIf it’s on registration, work with a child theme as described in this thread: https://buddypress.org/forums/topic/adding-some-text-to-the-signup-form
Then just prepopulate the fields (assuming it’s static info for all registrants) using standard forms HTML stuff.
If it’s dynamic info, well, same first step, but after that, I’m out of my depth!
April 12, 2010 at 3:00 am #72806Gene53
ParticipantThanks, I’ll give it a whirl tomorrow.
April 12, 2010 at 3:00 am #72906Gene53
ParticipantThanks, I’ll give it a whirl tomorrow.
April 12, 2010 at 2:54 am #72803jivany
ParticipantYou would probably have to do something like:
if( bp_the_profile_group != "3" || bp_the_profile_group != "4" ) {
//display the profile stuff in register.php
}You should be able to just toss that check near the top of that while loop and then remember your closing brace at the bottom.
April 12, 2010 at 2:54 am #72903jivany
ParticipantYou would probably have to do something like:
if( bp_the_profile_group != "3" || bp_the_profile_group != "4" ) {
//display the profile stuff in register.php
}You should be able to just toss that check near the top of that while loop and then remember your closing brace at the bottom.
April 12, 2010 at 2:40 am #72800Gene53
ParticipantThanks jivany, if I want to filter out groups 3 and 4, do I simply need to replace your above code’s “group number” with “3, 4”?
Thanks again
April 12, 2010 at 2:40 am #72900Gene53
ParticipantThanks jivany, if I want to filter out groups 3 and 4, do I simply need to replace your above code’s “group number” with “3, 4”?
Thanks again
April 12, 2010 at 2:31 am #72797jivany
ParticipantBasically, check your register.php main loop and only show the groups you want to show.
You’re looking for the while loop after the bp_is_active( ‘xprofile’ ) call.
Within the loop, you can filter out groups by doing a simple if check using
if (bp_the_profile_group() == "group number")where group number is the number of the group you want to show.Similar sort of idea in this thread: https://buddypress.org/forums/topic/profile-fields-questions
April 12, 2010 at 2:31 am #72897jivany
ParticipantBasically, check your register.php main loop and only show the groups you want to show.
You’re looking for the while loop after the bp_is_active( ‘xprofile’ ) call.
Within the loop, you can filter out groups by doing a simple if check using
if (bp_the_profile_group() == "group number")where group number is the number of the group you want to show.Similar sort of idea in this thread: https://buddypress.org/forums/topic/profile-fields-questions
April 10, 2010 at 9:05 pm #72667rsqst
ParticipantI found a solution here: http://www.code-zen.net/2009/using-custom-profile-field-data-in-buddypress-templates/
What I needed did in fact exist in the members loop already; just needed some help identifying it.
Line 36:
<?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 9, 2010 at 9:32 pm #72594cupedoll
ParticipantCould be I got the same issue here. 2.92 WordPress (single user) and latest BuddyPress installed via BuddyPress Template Pack Plugin.
With nothing disabled in BP general settings, everything enabled in component setup.
There is no “create group” in the “groups” tab. Only “My Groups” and “Invites”. Clicking the “groups” tab goes to http://www.ultimatecultureclash.com/members/cupedoll/groups/ which seems fine.
But I want forums. And it seems forums are a property of groups. So I need groups. How to create groups?
(After much confusion) I enter MANUALLY: http://ultimatecultureclash.com/groups/create/step/group-details/
This goes to /groups/create/step/group-details/images/images/bg_body.gif which looks good. The heading says “Create a Group” and there’s input fields for “Group Name” and “Group Description”.
But entering group name, group description and pressing “Create Group and Continue —->” button only reloads blog homepage and creates nothing.
Here’s more examples. “Activity” tab + “Personal” tab resolves to http://www.ultimatecultureclash.com/members/cupe3903doll/activity/just-me/ which is probably right. But “Profile” tab + “Edit profile” tab redirects back to home page.
How weird is that?
And one more thing I noticed. When tabs resolve where they should? I get logged out. But when tabs redirect to home page? I remain logged in.
April 9, 2010 at 6:39 pm #72572In reply to: xprofile vs usermeta syncing problems
peterverkooijen
ParticipantI’m still on 1.1.3. In 1.1.3 xprofile only gets synchronized with wp_usermeta when the user updates his account, which means you can never count on the data being there, which makes it pointless.
Lousy synchronization between xprofile and usermeta is not a bug, it’s a conscious design feature. Why? I’ve brought this issue up many times and have never received a clear answer.
I use a custom function like this below to synchronize member data upon registration into all the different, unconnected places in the database where data is stored:
function synchro_wp_usermeta($user_id, $password, $meta) {
global $bp, $wpdb;
$uid = get_userdata($user_id);
$email = $uid->user_email;
$fullname = $meta[field_1];
... whatever you need here ....
update_usermeta( $user_id, 'nickname', $fullname );
update_usermeta( $user_id, 'first_name', $firstname );
update_usermeta( $user_id, 'last_name', $lastname );
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET display_name = %s WHERE ID = %d", $fullname, $user_id ) );
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_url = %s WHERE ID = %d", bp_core_get_user_domain( $user_id ), $user_id ) );
}
add_action( 'wpmu_activate_user', 'synchro_wp_usermeta', 10, 3);Not sure if this still works in 1.2. I had posted my work-arounds under ‘FAQ: How To, Code Snippets and Solutions’, but they have been deleted. So I guess they solved the issues in 1.2?
To synch xprofile you’d need to create the fields in xprofile that you have in wp_usermeta and then do something backwards like the above function, if that hook etc. is still valid.
April 9, 2010 at 5:44 am #72487In reply to: Adding some text to the signup form?
jwack
Participanthmmm, any idea how to add the a paragraph under the “name” field, under profile details? I am not seeing where its being added? Here is where it pulls in the custom fields, but the name field can’t be edited to add a description like the other custom fields in the admin.
<?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>
<label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
<input type="text" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" value="<?php bp_the_profile_field_edit_value() ?>" />
<p><?php endif; ?>
April 8, 2010 at 6:20 pm #72382r-a-y
KeymasterI’d like all the subscribers/authors/etc (aka artists) for a given blog (aka art project) to be listed at the top of the blog’s index.php page, with a few fields from the xprofile (bio, specialty, etc.). Ideally, I’d get them to echoed in a way that was easy to feed into a snazzy jquery slider gizmo.
Should be possible, Nathan, using some WP template tags combined with that code snippet I posted above.
I’d help out if you can guarantee me some free lodging in that art monastery some time in the future
April 8, 2010 at 11:47 am #72341In reply to: Skeleton Key: Login as any user plugin
Mike Pratt
Participant@xezo that is correct. I thought he was talking about access to all profile fields for edit/delete, for which you do have access via the extra Admin bar menus created by BP for admins. Those are the ones I use all the time (fixing avatar crop screw ups, as an example)
So, from that perspective, the only use for Skeleton Key would be for additional stuff introduced by less that robust plugins, no?
April 8, 2010 at 11:13 am #72331rsqst
ParticipantThanks for your help @r-a-y
It’s for the next version of this website: http://www.artmonastery.org
It’s for a network of artists. Each blog will be a specific art project, and each subscriber/author will be an artist participating in that art project. Many artists will be participating in many different art projects, and I’d like their bio information to be publicly displayed on each blog/project.
The blogs will be the public “portal” for each of the art projects, which we will us to promote the projects. The groups that are associated with each blog (with the group blog plugin) will be the internal communication tool for the artists.
I’d like all the subscribers/authors/etc (aka artists) for a given blog (aka art project) to be listed at the top of the blog’s index.php page, with a few fields from the xprofile (bio, specialty, etc.). Ideally, I’d get them to echoed in a way that was easy to feed into a snazzy jquery slider gizmo.
artists.
I’m trying to build a resource for these artists that is really 1 database with many faces, and given that I love wordpress, buddypress seemed like the best way to do that. It’s just stretching my abilities, at the moment
April 7, 2010 at 6:42 am #72150In reply to: Can new users automatically get a set of pages?
5963314
InactiveHi Paul,
I was thinking about that option. Some fields can be very big, what’s the datatype used for multi-line text box? I want to allow my users to add maximum of 1-2 pages worth of text in these fields.
Also, is there a way to enable TinyMCE to format text in multi-line text box?
Final question: If I use a Drop down select box, can I direct users to a different group based on their response.
Lets say I create two groups – Football and Hockey.
I get my user to select their sport, if the select Football, they get directed to Football group to fill out football profile, other wise they get directed to Hockey group to fill out hockey profile.
April 6, 2010 at 10:50 pm #72101In reply to: Advanced Search plugin needed
holdenandmason1
Participant@dre1080, my post was about creating an advanced search page to search members based on the profile fields. Like the original poster said, “For example you could search for members, by age, location, hobby in one search (taking these things from created fields in profile.”
You could use a Google search to do what you’re asking for.
April 6, 2010 at 1:40 pm #72003gabrielcrowe
Membermore experimentation leads me to this solution:
items from the form are passed through global.js
i found and modified the posted items to include /match my new fields:
/* Default POST values */
var object = ”;
var item_id = j(“#whats-new-post-in”).val();
var content = j(“textarea#whats-new”).val();
var artist = j(“input#artist”).val();
var track = j(“input#track”).val();
/* Set object for non-profile posts */
if ( item_id > 0 ) {
object = j(“#whats-new-post-object”).val();
}
j.post( ajaxurl, {
action: ‘post_update’,
‘cookie’: encodeURIComponent(document.cookie),
‘_wpnonce_post_update’: j(“input#_wpnonce_post_update”).val(),
‘content’: content,
‘artist’: artist,
‘track’: track,
‘object’: object,
‘item_id’: item_id
},
and it worked just fine. _POSTed items are now available in my bp-custom.
April 4, 2010 at 8:00 pm #71725In reply to: How to hide "Base" group in the edit profile panel?
Brajesh Singh
Participanthey, you are most welcome.
well, you will need to edit registration.php
here is my take on it.
it will list all the fields from all the profile groups,and allow users to fill them. so please beware of it.
http://bpdev.pastebin.com/RLreXE7X
If you want to restrict to 1 or two profile groups, change the argument from
bp_has_profile( )In my edited code and it will work
And a little bit detail, I have removed the argument for bp_has_profile( ), so it lists all profile groups and then put then collected field ids in an array, which is passed via
hidden field ‘signup_profile_field_ids`
April 4, 2010 at 7:45 pm #71723In reply to: How to hide "Base" group in the edit profile panel?
Gene53
ParticipantHi Brajesh and thanks for the quick response.
I think your code is great but my problem is that the registration page only show whatever fields that are in group 1 (default BP function) and I need a few extra fields to be filled out in the signup page, any way around this such as showing the group 2 fields in register?
Thanks,
Gene
April 4, 2010 at 6:54 pm #71716In reply to: How to hide "Base" group in the edit profile panel?
Gene53
ParticipantDang, I have to reopen this thread, one thing was solved but another problem was created.
Brajesh’s code solved my “user can’t edit his name field” but I then realized that the registration page only showed the profile name field (which I renamed Username) which was the only field I had in profile group 1.
My problem now is that I need extra fields upon registration but I still want the name field hidden or not editable in the edit profile screen.
Is there something I can change in Brajesh’s code (or new code altogether) that will accomplish this?
Thanks,
Gene
April 4, 2010 at 3:18 pm #71700In reply to: Forum size issues
norrismp
ParticipantI changed that to 100% and it still doesn’t change. Here is the Tables/Forum section from default.css:
/* > Data Tables
*/table {
width: 100%;
}
table#message-threads {
margin: 0 -20px;
width: 100%;
}
table.profile-fields { margin-bottom: 20px; }
div#sidebar table {
margin: 0 -16px;
width: 117%;
}
table tr td, table tr th {
padding: 8px;
vertical-align: middle;
}
table tr td.label {
border-right: 1px solid #eaeaea;
font-weight: bold;
width: 25%;
}
table tr td.thread-info p { margin: 0; }
table tr td.thread-info p.thread-excerpt {
color: #888;
font-size: 11px;
margin-top: 3px;
}
div#sidebar table td, table.forum td { text-align: center; }
table tr.alt {
background: #f4f4f4;
}
table.notification-settings {
margin-bottom: 20px;
text-align: left;
}
table.notification-settings th.icon, table.notification-settings td:first-child { display: none; }
table.notification-settings th.title { width: 80%; }
table.notification-settings .yes, table.notification-settings .no { width: 40px; text-align: center; }
table.forum {
margin: -9px -20px 20px -20px;
width: 100%;
}
table.forum tr:first-child {
background: #fafafa;
}
table.forum tr.sticky td {
background: #FFF9DB;
border-top: 1px solid #FFE8C4;
border-bottom: 1px solid #FFE8C4;
}
table.forum tr.closed td.td-title {
padding-left: 35px;
background-image: url( ../images/closed.png );
background-position: 15px 50%;
background-repeat: no-repeat;
}
table.forum td p.topic-text {
color: #888;
font-size: 11px;
}
table.forum tr > td:first-child, table.forum tr > th:first-child {
padding-left: 15px;
}
table.forum tr > td:last-child, table.forum tr > th:last-child {
padding-right: 15px;
}
table.forum tr th#th-title, table.forum tr th#th-poster,
table.forum tr th#th-group, table.forum td.td-poster,
table.forum td.td-group, table.forum td.td-title { text-align: left; }
table.forum td.td-freshness {
font-size: 11px;
color: #888;
}
table.forum td img.avatar {
margin-right: 5px;
}
table.forum td.td-poster, table.forum td.td-group {
min-width: 130px;
}
table.forum th#th-title {
width: 100%;
}
table.forum th#th-postcount {
width: 1%;
}
-
AuthorSearch Results