Search Results for 'buddypress'
-
AuthorSearch Results
-
July 1, 2012 at 11:16 am #136652
In reply to: Show custom profile fields in buddyPress?
Pinhead149
Member@RogerCoathup – email is sent
July 1, 2012 at 10:27 am #136650In reply to: Confusing about groups and forums
Roger Coathup
ParticipantHi Jeroen,
we’ve built a lot of sites on BuddyPress – and forums are often a big issue for our clients.
Clients / users expect forums to behave like normal forums (as your users have already indicated as well). Unfortunately, the BuddyPress group forum approach just doesn’t work in this regard.
If forums are crucial to your site – then yes, install the bbPress plugin alongside BuddyPress, and work with the standalone forums it provides.
You’ll need to implement some logic to control accessibility / visibility to certain restricted forums – but that’s not difficult – you can either use the BuddyPress Groups to group your guild officers, and then use the BuddyPress API to test whether a member is in that group. Or, if you don’t require the other group functionality, you may be best to create a new user role with the standard WordPress API.
If you want to see a couple of examples of bbPress providing standalone forums on a BuddyPress site, you can check out our builds for http://worshipministry.com and http://enterprisenation.com
Hope that helps, Roger
July 1, 2012 at 10:20 am #136649In reply to: BuddyPress 1.6 Beta 1 is ready to test
valuser
ParticipantCan’t reproduce this online – so its something to do with my set-up
July 1, 2012 at 9:17 am #136648In reply to: BuddyPress 1.6 Beta 1 is ready to test
valuser
Participantok. this is happening with buddypress as the sole plugin active. (Single site install bp default theme admin user, non admin user – the behavior is as described above)
opened a ticket https://buddypress.trac.wordpress.org/ticket/4320
July 1, 2012 at 9:09 am #136647lakhlu
MemberThanks a lot karmatosed, seems like its going the right direction
Karmatosed, maybe there is a way to apply this particular cs styling to those pages only? or just to “pages” in wordpress and not the main one as well as post types?
July 1, 2012 at 8:33 am #136644Roger Coathup
ParticipantTo make the URL clickable, add an anchor tag and use bp_get_member_profile_data() to get the value for the href attribute.
July 1, 2012 at 7:14 am #136643In reply to: Is a Child Theme a must have?
Roger Coathup
ParticipantNo, you don’t need to use a child theme.
You can work the way you do with Twenty Eleven – copying over the parts of bp-default that you want to reuse into a clean non-child theme. We build all our BuddyPress sites this way.
We do it for a number of reasons: completely different layout structures, markup, and to better allow our clients to upgrade –
If you are building a site for a client, making your site a child of bp-default is not a future proof approach. Often update releases of BuddyPress change look, feel and functional elements in bp-default – if your client upgrades their site and it is a child of bp-default, they will have these changes forced on them.
July 1, 2012 at 6:37 am #136642Paul Wong-Gibbs
KeymasterI’ve never seen anything like that before. I don’t know. Are there any errors in your web browser’s javascript console or on your server’s PHP logs?
July 1, 2012 at 6:36 am #136641In reply to: Avatars not working on Multiblog
Paul Wong-Gibbs
KeymasterKeep an eye on https://buddypress.trac.wordpress.org/ticket/4252
July 1, 2012 at 6:35 am #136640In reply to: User blogs not created
Paul Wong-Gibbs
KeymasterDisable BuddyPress. Create a new site from inside the WordPress (Network) Admin. Can you access it?
July 1, 2012 at 6:35 am #136639Paul Wong-Gibbs
KeymasterYou could ask them to review their web server’s logs and tell you if/what the error messages are.
July 1, 2012 at 2:16 am #136638In reply to: Is a Child Theme a must have?
modemlooper
ModeratorYes. The BuddyPress template files are in the plugins folder and get written over on upgrade. It’s a safety measure to use a child theme in case you make mistakes.
in a future BP version BP will use something like template parts and you can use any theme.
June 30, 2012 at 11:58 pm #136635In reply to: BuddyPress 1.6 Beta 1 is ready to test
valuser
ParticipantPresume this is the best place for feedback. if not let me know and i’ll do a separate topic.
Bp 1.6 Beta 1 and up to trunk 6154 and wp 3.4.1 local install
on a single site with bp default theme and on a multisite with child of bp default.
Changes to Profile fields visibility don’t seem to be sticking
Hobbies – not a required field Who can see this field ? Anyone (default)
Change Anyone to Logged in Users and Press Save Changes.
Green Box arrives on top of page —-> Changes Saved
But the changes are NOT saved. Everything stays the same !
Refresh page/Empty cache —> No help,
Same for non-admin user as for admin.
I have a good few plugins active and that possibly could be the cause.
Will disable these tomorrow to check.
In the meantime it would be great to have this confirmed or refuted.
June 30, 2012 at 11:54 pm #136634mememe123
MemberHi Roger,
Thank you, I am new at this. What should I tell my hosting provider specifically?
June 30, 2012 at 10:44 pm #136633Hugo Ashmore
ParticipantGlad it’s working, wasn’t that hard in the end
thanks for posting your example.i’ve opened a ticket to see if the comment text in the file can be amended with new example.
June 30, 2012 at 10:05 pm #136632Kookidooki
ParticipantI’ve made a summary for others and as a reminder:
This is the code you must add around line 30 in wp-content/plugins/buddypress/bp-themes/bp-default/members/single/member-header.php:
`Location:Hobbies:<a href="”>Url:`
And how do I make the url clickable?
June 30, 2012 at 9:51 pm #136631Kookidooki
ParticipantHello guys,
It works!!!
I’ve replaced in /single/members-header.php the code bp_profile_field_data() by bp_member_profile_data() and it works great!Thank you guys!!
June 30, 2012 at 9:35 pm #136630Hugo Ashmore
ParticipantWhy are you looking in bp core files? Dont!
Please read through the thread again all the answers are there – you need to be working in /single/members-header.phpJune 30, 2012 at 9:12 pm #136629Kookidooki
ParticipantHello guys,
Thank you for your help; I really appreciate that.
In bp-members-template.php and bp_member_profile_data I’ve found this code at line 596-632:
`function bp_member_profile_data( $args = ” ) {
echo bp_get_member_profile_data( $args );
}
function bp_get_member_profile_data( $args = ” ) {
global $bp, $members_template;if ( !bp_is_active( ‘xprofile’ ) )
return false;// Declare local variables
$data = false;
$user_id = 0;// Guess at default $user_id
if ( !empty( $members_template->member->id ) )
$user_id = $members_template->member->id;
elseif ( !empty( $bp->displayed_user->id ) )
$user_id = $bp->displayed_user->id;$defaults = array(
‘field’ => false, // Field name
‘user_id’ => $user_id
);$r = wp_parse_args( $args, $defaults );
extract( $r, EXTR_SKIP );// Populate the user if it hasn’t been already.
if ( empty( $members_template->member->profile_data ) && method_exists( ‘BP_XProfile_ProfileData’, ‘get_all_for_user’ ) )
$members_template->member->profile_data = BP_XProfile_ProfileData::get_all_for_user( $user_id );// Get the field data if there is data to get
if ( !empty( $members_template->member->profile_data ) )
$data = xprofile_format_profile_field( $members_template->member->profile_data[$field], $members_template->member->profile_data[$field] );return apply_filters( ‘bp_get_member_profile_data’, $data );
}`Is this the code you’re talking about and what should be modified?
June 30, 2012 at 9:12 pm #136628In reply to: Show custom profile fields in buddyPress?
Roger Coathup
Participant@pinhead149 – if you’d like us to quote on the integration work, please email info@21inspired.com
Alternatively, there are a number of other good BuddyPress developers you could approach. You could also try the jobs board on here (although it’s not very active): https://buddypress.org/community/groups/bp-jobs-board/
June 30, 2012 at 8:24 pm #136627In reply to: Show custom profile fields in buddyPress?
Pinhead149
Memberhm i don’t understand it. can you help me maybe via skype, icq or something? i’ll pay for it if it works.
skype: pinheaduntergrund
icq: 415917355thanks
June 30, 2012 at 6:32 pm #136626gaznev2000
MemberSame Problem here as well, seen screen shot.
http://www.chimpmarketing.com/BuddyPress-Install.png
This is my screen and as you can see i have no save button.
June 30, 2012 at 4:22 pm #136625In reply to: Show custom profile fields in buddyPress?
Roger Coathup
ParticipantHave a look at the templates in /member/single/profile
e.g. edit.php – you’ll be interested in hooks such as bp_custom_profile_edit_fields
You’ll also want to look at members-loop.php to display the plugin fields.
June 30, 2012 at 3:09 pm #136624Hugo Ashmore
Participanthttps://buddypress.trac.wordpress.org/ticket/4319 asks the question whether comments shouldn’t be updated.
June 30, 2012 at 2:58 pm #136623Hugo Ashmore
Participant@shanebp xprofile_get_field_data() is useful if outside of a loop, but this issue is in a members loop so the above function appropriate – but as Roger says why on earth do we still guide people to use bp_profile_field_data() if it effectively doesn’t work?
-
AuthorSearch Results