Search Results for 'buddypress'
-
AuthorSearch Results
-
September 23, 2011 at 7:47 pm #120803
In reply to: BuddyPress Members page now gives this error
Paul Wong-Gibbs
KeymasterThis works for me.
September 23, 2011 at 7:33 pm #120802In reply to: BuddyPress Members page now gives this error
rtysmith
MemberYea, with default theme, same issue, with activity stream deactivated
September 23, 2011 at 6:22 pm #120795kkradel
ParticipantThank YOU!!!
Finally something that worked!
I had backed up all of my BuddyPress files before I upgraded so I just replaced the bp.css file in the plugins/bp-template-pack.
Now, on to see if I can make BuddyPress do what *I* want it to do rather than having it eat up my whole site.
September 23, 2011 at 6:22 pm #120794In reply to: Only default theme works with BuddyPress
@mercime
ParticipantBP 1.5 is a major release. closing 998 tickets of bug and enhancement reports. Theme/plugin devs are currently updating themes and plugins. In the meantime, you can also use a WP theme and install the BP Template Pack plugin to make your WP theme compatible with BuddyPress
September 23, 2011 at 6:14 pm #120793@mercime
Participant@kkradel bp.css is enqueued after your style.css and bp.css has this in stylesheet
`#wp-admin-bar .padder {
width: 95% !important; /* Line up the admin bar with the content body in this theme */
}`The easiest thing to do is to
1 – download a copy of bp.css https://plugins.svn.wordpress.org/bp-template-pack/tags/1.2/bp.css
2 – correct the width of #wp-admin-bar .padder to 100%
3 – upload to server in plugins/bp-template-pack to override old bp.cssSeptember 23, 2011 at 5:32 pm #120788In reply to: Buddypress 1.5 on multisite
Boone Gorges
Keymaster@seluvega Make sure that you have activated a theme other than BuddyPress Default on the main site.
September 23, 2011 at 5:16 pm #120787In reply to: Buddypress 1.5 on multisite
seluvega
Member@boonebgorges Im having a really weird issue with multisite and buddypress! I ve define a diferent root blog for buddypress install, and everything looks fine… but, of course there is a but!, on main site all my links goes to blank page, not the home page but all news, i ve tried to do everything like touching the htaccess, or change the permalinks even trying to eliminate the blog slug but has been imposible to make it works! any clues? Thanks!
September 23, 2011 at 5:00 pm #120785abutterworth
MemberSO I didn’t receive any answers on this but I did manage to struggle my way through and I will leave the solution here for those with the same question.
To add sub_nav links in buddypress 1.5 groups do the following:
1) bp-core-template.php
register the groups
///////////////
function bp_is_group_stock_quote() {
if ( bp_is_groups_component() && bp_is_current_action( ‘stock-quote’ ) )
return true;
return false;
}
//////////////////2) bp-group-loader.php
define the subnav item:
/////////////////
$sub_nav[] = array(
‘name’ => __( ‘Stock Quote’, ‘buddypress’ ),
‘slug’ => ‘stock-quote’,
‘parent_url’ => $group_link,
‘parent_slug’ => $this->current_group->slug,
‘screen_function’ => ‘groups_screen_group_stock_quote’,
‘item_css_id’ => ‘stock’,
‘position’ => 50,
‘user_has_access’ => $this->current_group->user_has_access
);
///////////////////////3) bp-groups-screen.php
define the action that clicking will elicit:function groups_screen_group_stock_quote() {
global $bp;if ( $bp->is_single_item ) {
// Refresh the group member count meta
groups_update_groupmeta( $bp->groups->current_group->id, ‘total_member_count’, groups_get_total_member_count( $bp->groups->current_group->id ) );do_action( ‘groups_screen_group_stock_quote’, $bp->groups->current_group->id );
bp_core_load_template( apply_filters( ‘groups_template_group_members’, ‘groups/single/home’ ) );
}
}The URIs above all go to the groups/single/home because there it loads the header etc and includes the body file depending on the action. So add your pages to that area and then create them in the your_theme/groups/single directory. For the above example I created theme/groups/single/stock-quote.php.
Cheers
September 23, 2011 at 4:45 pm #120784Prince Abiola Ogundipe
Participant@r-a-y, can i just add the following code to my child theme function.php and define my custom css in style.css as i dont want to use default theme css.
`if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {}
endif;`i will like to use my custom css.
RegardsSeptember 23, 2011 at 4:12 pm #120780echoman
ParticipantSorry i should put complete error i received.
Fatal error: Call to undefined function is_site_admin() in /home/echoman/public_html/wp-content/plugins/bp-phototag/includes/bp-album-core.php on line 305September 23, 2011 at 4:03 pm #120778In reply to: Buddypress 1.5 on multisite
dosch
MemberNow I only have the problem that the grey Buddypress-bar is always showing. Even when I am on a dashboard of another site…
September 23, 2011 at 3:40 pm #120772In reply to: Changing Group tab display defaults
Andrew Tegenkamp
ParticipantThat’s odd ~ are you using 1.5 or on the 1.2 branch? Guess I shoulda asked that before

Regarding the forums, you may need to disable BuddyPress since the forum plugin bbPress uses the same code as BuddyPress for its forums ~ it’s all bbPress.org and it creates users as WP users so there are plenty of plugins to email all your users FWIW.
If you do feel comfortable with me FTP’ing into the site, feel free to send me some FTP info and I can take a look. Should only need access to the plugins folder to debug the redirect thing ~ I’m very curiuos why it doesn’t work, but it sounds like BP may be overkill for this project since bbPress is now available so I would understand you heading a different direction too.
September 23, 2011 at 3:22 pm #120769In reply to: Buddypress 1.5 on multisite
dosch
MemberBrilliant! That worked!
Thanx so much!September 23, 2011 at 3:02 pm #120768Boone Gorges
KeymasterIt looks like you haven’t set up your permalinks correctly, or that there is a problem with your .htaccess.
Go to Dashboard > Settings > Permalinks. Make sure that you have chosen an option other than the first option, and click Save. (Save your settings even if you don’t change them – just saving them can trigger things to work.)
If the site links still don’t work, check in the root of your WP installation for a hidden file called .htaccess. Is it there? What are its contents?
Do you happen to know what operating system your server is running?
September 23, 2011 at 2:40 pm #120767September 23, 2011 at 2:39 pm #120766zpg
MemberI did what I’ve read in the codex but still didn’t work.
Now I’ve got a fresh WP installation AND a fresh BP installation.
WP 3.2.1 BP 1.5 using BP default theme.still doesn’t work. can someone take a look and give me advise?
September 23, 2011 at 2:16 pm #120763In reply to: Buddypress 1.5 on multisite
Boone Gorges
KeymasterBuddyPress is a “network only” plugin. That means that you can only “network activate” it. But, the way BP works, you generally only show BP content on a single one of your blogs – we call that the “root blog”. By default, it is blog number 1, the main blog in your network. For this to work, just activate a BP-compatible theme (like BuddyPress Default).
If you want your community/BP content to be on a blog other than the main blog, you’ll have to define an alternative root blog. In wp-config.php:
`define( ‘BP_ROOT_BLOG’, 6 );`
where you replace ‘6’ with the id of your desired root blog.September 23, 2011 at 12:53 pm #120759In reply to: Changing Group tab display defaults
goldmember
Member@andrewteg, I tried the code you provided but nothing new happened. then i got rid of the comment-outs (i think I did it the right way) and I pasted in this code (http://pastebin.com/HY9zwhHg) but that didnt work either.
i will give that plugin a shot though because all I really want is the forums. Though I do need to be able to occasionally e-mail all the forum members. hopefully it will let me do that.
September 23, 2011 at 12:50 pm #120758In reply to: Login box Redirect to Registration Page (Resolved)
Asdrubal
Memberbuddypress > bp-themes > bp-default > sidebar.php
September 23, 2011 at 11:46 am #120754In reply to: Another post about privacy
solenyi
MemberThis was an intermediary fix for the non-working profile privacy plugin: http://www.quora.com/BuddyPress/Is-it-possible-to-make-all-the-Buddypress-features-only-accessible-for-logged-in-users
September 23, 2011 at 11:13 am #120753In reply to: Another post about privacy
solenyi
MemberFollowing up on this: There were rumours that the functionality of BP Profile Privacy would be included in the next update – that did not happen, did it? I think it would be really essential to be allowed to block your profile to non-logged-in users and/or non-friends, no? Am I just blind or was there a reason that it was not included or just too little time or…
Dont get me wrong, I love buddypress and am really really grateful that it exists!September 23, 2011 at 10:31 am #120751In reply to: Can’t Delete Default BuddyPress Theme
takuya
Participantbp-default is in BuddyPress plugin folder, you’ll need it to run BuddyPress. There’s super admin option for multiste to set which users can use which themes.
September 23, 2011 at 10:29 am #120750In reply to: Buddypress 1.5 on multisite
takuya
ParticipantSeptember 23, 2011 at 9:38 am #120746In reply to: How do you add a Favorite Button to Blog Posts?
Tammie Lister
ModeratorIt depends what you want to happen on favourite.
https://wordpress.org/extend/plugins/add-to-any/ works for social / bookmarking.
If you wanted to add the BuddyPress style favorites though that would be:
https://wordpress.org/extend/plugins/bp-favorites/
Or perhaps likes with this plugin:
https://buddypress.org/community/groups/buddypress-like/
I am not 100% sure how updated any of those plugins are though.
September 23, 2011 at 9:30 am #120745In reply to: I screwed up the CSS :( can anyone help?
Tammie Lister
ModeratorFirst up have you both checked that the themes you are using have been updated for BuddyPress 1.5?
-
AuthorSearch Results