Search Results for 'buddypress'
-
AuthorSearch Results
-
August 30, 2011 at 9:41 pm #119295
In reply to: Buddypress Admin Bar/Menu Changes
jcampbell120
MemberHi, I wasn’t expecting somebody to just write a couple of hundred lines of code for this to work. Just wanted to bat around a few ideas with some like minded people is all. Appreciate the link, very useful and it gives me something to work on. Just thought that more people would want this sort of implementation on their site.
cheers.
August 30, 2011 at 9:01 pm #119293gregfielding
ParticipantThe first option removed the buddybar. The second resulted in an error message:
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘bp_core_load_buddybar_css’ was given in /home/housings/public_html/townswell.com/wp-includes/plugin.php on line 405
To clarify, I don’t want to remove it, I just want to be able to restyle it with my own child theme css.
August 30, 2011 at 8:54 pm #119291In reply to: Buddypress Admin Bar/Menu Changes
@mercime
Participant@jcampbell120 99.9% of those who help out at buddypress.org are volunteers and what you’re asking for cannot be done within 10 minutes. If you’re not being helped within 25 hours, feel free to bump, but no arrogance please. In the meantime, check out Michael’s method which could be helpful to you http://www.michaelkuhlmann.com/tutorials/customizing-admin-bar/
August 30, 2011 at 8:47 pm #119288In reply to: multiple Problems with my buddypress….
@mercime
Participant@ribena_wrath re sidebar below content: Looks like you closed a div too soon. If you require assistance, open up your theme’s page.php, copy the code, paste on pastebin.com, click submit and post the generated url here.
re: forum layout: in the last few steps of the BP compatibility process, make sure that you checked enabling bp.css
August 30, 2011 at 8:41 pm #119287In reply to: Custom Community and WP 3.2.1
@mercime
ParticipantI suggest you post this issue at theme dev’s forums at http://themekraft.com/groups/custom-community/forum where the theme devs @svenl77 and @konradS will be able to assist you. Do add which version of BP and Costum Community Theme you using as well when you post there.
August 30, 2011 at 8:36 pm #119286In reply to: Help with this Fatal Error Message . . .
@mercime
ParticipantRecommend that you post this in that plugin’s section which Stas Su?cov, the plugin author, usually checks out https://buddypress.org/community/groups/buddypress-courseware/forum/
August 30, 2011 at 8:31 pm #119285In reply to: Getting started with BuddyPress in multisite
@mercime
ParticipantUpper right hand corner of dashboard, you’ll find the link to network admin in dropdown. http://wpmu.org/wordpress-3-2-bring-back-your-network-admin-link-with-our-free-plugin/
August 30, 2011 at 8:24 pm #119284In reply to: Using Buddypress search rather then WordPress search
@mercime
ParticipantLines 89-95 from bp-default theme’s header.php https://buddypress.trac.wordpress.org/browser/tags/1.2.9/bp-themes/bp-default/header.php contains the search.
August 30, 2011 at 8:17 pm #119283@mercime
Participant@gregfielding disregard previous post … to disable BP’s Admin Bar aka buddybar, just add this to functions.php
`remove_action( ‘bp_init’, ‘bp_core_load_buddybar_css’ );`
August 30, 2011 at 6:04 pm #119274In reply to: BuddyPress theme with bbPress templates
modemlooper
ModeratorThe beta 3 should be ok to run on a live site. Always back up though before installing beta BuddyPress. You will get native drop downs and many other fixes/enhancements
August 30, 2011 at 5:54 pm #119273blaamann
MemberYes, they are all public. This is the option that is marked:
(x) “I would like my blog to be visible to everyone, including search engines (like Google, Bing, Technorati) and archivers”.Today I discovered another blogpost not showing:
http://hvalross.hib.no/adminf11/tommy/2011/08/30/litt-om-meg-og-min-data-interesse/But comments to his blogpost is showing in the activity stream:
http://hvalross.hib.no/adminf11/activity/I’ve also discovered that timezone settings are wrong in a lot of the blogs. I have told the blogs admins to set them properly, and now I will wait and see if that solves this mystery (might be that BuddyPress checks time in a certain way to decide to show stuff in the activity stream or not).
btw, thanks for asking. I felt alone in here. Good to know someone reads my questions
August 30, 2011 at 5:39 pm #119272In reply to: Getting started with BuddyPress in multisite
blaamann
MemberIn WordPress 3.2.1 as a Network admin you should find it at the left menu second item from the top ‘BuddyPress’.
August 30, 2011 at 5:25 pm #119271In reply to: BuddyPress theme with bbPress templates
matuh
ParticipantI found the answer. They are using the latest beta version. It has the drop down menus.
August 30, 2011 at 5:16 pm #119270In reply to: Need plugins for FB connect, bookmarking
modemlooper
ModeratorTry some of the WP Facebook connects. I know simple FB connect works and a few others do as well.
Not sure if this plugin still works but for liking things on a site:
https://wordpress.org/extend/plugins/buddypress-likeAugust 30, 2011 at 5:11 pm #119269In reply to: new version of BuddyPress Rate Forum Posts
demo7up
MemberCode:<?php
global $bp;$karma = get_usermeta( $bp->displayed_user->id, ‘rfp_post_karma’ );
$relative_karma = rfp_calculate_relative_karma( $karma, $bp->displayed_user->id );echo ‘<div class="rfp-member-profile-karma">’ . get_option( ‘rfp_karma_label’ ) . rfp_poster_karma( $relative_karma ) . ‘</div>’;
add_action( ‘bp_sidebar_me’, ‘rfp_show_poster_karma’ );
?>
August 30, 2011 at 5:11 pm #119268In reply to: How to list user from a specific profile data ???
mohammad
ParticipantAugust 30, 2011 at 5:10 pm #119267In reply to: new version of BuddyPress Rate Forum Posts
demo7up
MemberI was wondering if anyone could help me out i have reached out to the developer and he wants 140 for his time although i do think its fair and he should be paid for his time i just cannot afford it at this time unfortunately ..
Im trying to show the users rating points in the login box after the user has logged in already
i have added this code
<?php
global $bp;$karma = get_usermeta( $bp->displayed_user->id, ‘rfp_post_karma’ );
$relative_karma = rfp_calculate_relative_karma( $karma, $bp->displayed_user->id );echo ‘
‘ . get_option( ‘rfp_karma_label’ ) . rfp_poster_karma( $relative_karma ) . ‘‘;
?>it gets and displays the label no problem but it doesn’t show the the actual points after the label i have searched in and out and i cant figure it out.
Any help is much appreciated.
August 30, 2011 at 5:08 pm #119266mohammad
ParticipantAugust 30, 2011 at 4:21 pm #119262In reply to: BuddyPress Welcome Pack Emails with HTML
Rocio Valdivia
ParticipantHi @DJPaul , it’s great to know that you’re working on that now, beacuse it’s a very usefull feature

Looking foward to see next version, thanks!
August 30, 2011 at 3:49 pm #119260John James Jacoby
KeymasterAdded some additional checks that are in bbPress 2.0 RC 4. Thanks for the heads up.
August 30, 2011 at 2:40 pm #119254In reply to: BuddyPress Welcome Pack Emails with HTML
Paul Wong-Gibbs
KeymasterHi

Next version will support HTML emails. It’s my current project I’m working on.
August 30, 2011 at 1:30 pm #119252In reply to: BuddyPress theme with bbPress templates
matuh
ParticipantOne more thing with this theme. http://testbp.org/discussion/ has drop down menus. Is it using a plugin for that? I read from some forum that drop down is soon integrated into BuddyPress default theme, but it was 9 months ago. Isn’t it still integrated?
August 30, 2011 at 1:17 pm #119251In reply to: Profile page
Quint
Participant@enderandrew, I’ve just installed 1.5 Beta 3, and tried to recreate the issue I had with the checkboxes mentioned in my earlier post. This is issue appears to have been solved.
August 30, 2011 at 1:01 pm #119250In reply to: Profile page
Quint
Participant@enderandrew, I do not have your issue on 1.2.9 nor 1.5 Beta 2. The only issue I have is that the checkboxes options field that I add to XProfile, do not show up in BP 1.5 Beta 2 (only the first checkbox option does), while all options display in BP 1.2.9.
August 30, 2011 at 12:12 pm #119248In reply to: BuddyPress theme with bbPress templates
matuh
ParticipantThank you Sofian! The shortcodes helped me out.
-
AuthorSearch Results