Search Results for 'questions'
-
Search Results
-
Hello
I’ve got a friend who has a well running website with over 5000 posts.
He wants to change it to a community.So bp would be great.
I’ve got questions.Is bp now working good on a singe wp blog or are there problems?
Will it also be possibly to get mu on his site?
Thanks
Topic: Group Blog
Just installed the bp-groupblog plugin in version 1.1.3. Sweet!
I had to add this to the top of bp-groupblog.php though:
/*** Make sure BuddyPress is loaded ********************************/
if ( !function_exists( 'bp_core_install' ) ) {
require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
if ( is_plugin_active( 'buddypress/bp-loader.php' ) )
require_once ( WP_PLUGIN_DIR . '/buddypress/bp-loader.php' );
else {
return;
}
}
/*******************************************************************/I may have had an older version of the plugin…
I started this thread to keep track of my experiences with this plugin, post comments and ask questions. There are several other threads about this plugin out there, but they’re getting a bit confusing.
Is it possible to use the group blog as a replacement for the group wire? Any downsides?
Is it possible to add a quick posting field on top of the group’s main page, so the group blog becomes a more Twitter-like microblogging tool? Has anyone done that?
Would using the group blog in combination with FeedWordpress syndication work? Mix external RSS feeds with group posts?
Would it be possible to let group members enter those external RSS feeds?
Going to try these things…
Will this plugin be updated for version 1.2?
I have a few issues. Most of these are due to currently not being able to tell whether I’m editing the correct php files… There must be a way of debugging this considering I do not have direct access to the web server other than by FTP?
1. On my website, I need a login page that you need to login via before you can visit the rest of the site. I don’t want to use wp-login since I need other html to be on this page… I also need a blog that displays recent blog entries, and a Network Home which shows site wide activity (also, a couple of other pages, but these there are no issues with)
Depending on whether in the settings page I pick the posts page as the homepage or I make the homepage a static page (Login) and pick a Blogs page to be the recent posts page, I get different issues. With the former Network Home seems to be displaying for the root page (index.php?) of the site rather than the Login, but everything else is correct… With the latter the root page (index.php?) of the site displays the Login, but the /blog/ section of the site does not display the blog. Rather than showing recent posts, it shows a list of ‘pages’.
So yeah, perhaps this means the template files that I’ve been using do not have the correct html inside them? However, it is not obvious how a web address points to a particular template. How do I set this up? How do I know I’m editing the correct files?
2. My other problem is that I can’t seem to override the core buddypress functionality. I placed code inside /plugins/bp-custom.php
That looked something like:
<?php
function my_alter_bp_adminbar(){
remove_action(‘bp_adminbar_menus’, ‘bp_adminbar_account_menu’, 4);
}
add_action(‘wp_footer’,’my_alter_bp_adminbar’,1);
?>
I would have expected this to remove the Account drop-down, but yet nothing happens. (In the long-run I want to replace this, but was just testing this…)
It’s driving me crazy…

<b>edit:</b> Hopefully I’m explaining this okay. I can answer any questions you have if you make them. C:
Currently running bleeding everything but this is generally a 1.2 related topic:
Re: the login area and functionality in sidebar.php for bp-default theme. I am soliciting ideas for handling the following situations, which, imho, could be handled better in the current state.
-> User inputs incorrect username or password. Result: redirect to error message as part of /wp-login page. Issue: you leave the themed site environment to the WP admin environment. Fatal? No. But I’d like to keep the user on the same page or similar, keep the feel the same and provide an error message and get them back on track.
I can add a “lost password” link but that is only to the wp-login url -> http://domain.com/wp-login.php?action=lostpassword and the experience is still WP back end.
So my question is: Is this a matter of skinning the few WP related pages somehow or recreating them in the BP world? I know it may seem trivial to some but it’s throwing many of my users (maybe that’s saying something in and of itself
) and the number of significantly contributing code patchers, bug reports, and trac tickets has just about doubled also.