Search Results for 'theme'
-
AuthorSearch Results
-
July 16, 2009 at 11:54 am #49424
In reply to: WPmu BBPress BdPress – in which order?
kriskl
ParticipantHello!
I have tried with the update, and I still get the same error
You do not have any BuddyPress themes installed.
Please move “/wp-content/plugins/buddypress/bp-themes/” to “/wp-content/bp-themes/” and refresh this page. You can download more themes here.
Am I the only one?
July 16, 2009 at 7:18 am #49419r-a-y
KeymasterIf you look at /bp-core/bp-core-adminbar.php, all the functions are defined.
eg. if you want to call the “My Account” menu, use bp_adminbar_account_menu()
—
For the register page, study how this page is built: wp-content/plugins/buddypress/bpthemes/bphome/register.php.
July 16, 2009 at 6:30 am #49416In reply to: BuddyBar for bbPress
Mohit Kumar
Participanthere is my wp-config with db details and auth key removed
<?php
if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {
define( ‘WP_USE_THEMES’, false );
include_once( ‘/public_html/wp-blog-header.php’ );
header( “HTTP/1.1 200 OK” );
header( “Status: 200 All rosy” );
}
define( ‘BBDB_NAME’, ‘database here’ );
define( ‘BBDB_USER’, ‘user here’ );
define( ‘BBDB_PASSWORD’, ‘pass here’ );
define( ‘BBDB_HOST’, ‘localhost’ );
define( ‘BBDB_CHARSET’, ‘utf8’ );
define( ‘BBDB_COLLATE’, ” );
define(‘BB_AUTH_KEY’, ‘
‘);define(‘BB_SECURE_AUTH_KEY’, ‘
‘);define(‘BB_LOGGED_IN_KEY’, ‘
‘);define(‘BB_NONCE_KEY’, ‘
‘);define(‘BB_AUTH_SALT’, ‘
‘);define(‘BB_LOGGED_IN_SALT’, ‘
‘);define(‘BB_SECURE_AUTH_SALT’, ‘
‘);auth keys here ^ same as that in wp-config
$bb_table_prefix = ‘bn_’;
define( ‘BB_LANG’, ” );
$bb->bb_xmlrpc_allow_user_switching = true;
?>
July 16, 2009 at 12:40 am #49399In reply to: loading templates problem
grosbouff
ParticipantI finally found out.
Maybe this should be added to the doc ?
I forget to add those functions :
function component_force_buddypress_theme( $template ) {
global $bp;
if ( $bp->current_component == $bp->component->slug && empty( $bp->current_action ) ) {
$member_theme = get_site_option( 'active-member-theme' );
if ( empty( $member_theme ) )
$member_theme = 'bpmember';
add_filter( 'theme_root', 'bp_core_filter_buddypress_theme_root' );
add_filter( 'theme_root_uri', 'bp_core_filter_buddypress_theme_root_uri' );
return $member_theme;
} else {
return $template;
}
}
add_filter( 'template', 'component_force_buddypress_theme', 1, 1 );
function component_force_buddypress_stylesheet( $stylesheet ) {
global $bp;
if ( $bp->current_component == $bp->component->slug && empty( $bp->current_action ) ) {
$member_theme = get_site_option( 'active-member-theme' );
if ( empty( $member_theme ) )
$member_theme = 'bpmember';
add_filter( 'theme_root', 'bp_core_filter_buddypress_theme_root' );
add_filter( 'theme_root_uri', 'bp_core_filter_buddypress_theme_root_uri' );
return $member_theme;
} else {
return $stylesheet;
}
}
add_filter( 'stylesheet', 'component_force_buddypress_stylesheet', 1, 1 );July 15, 2009 at 6:25 pm #49384In reply to: BuddyBar for bbPress
matthijsv
ParticipantSome more debuggin for the admin bar in combination with Transposh(and maybe some other WP-plugins that manipulate output in a special way)
if(!strpos($_SERVER['SCRIPT_NAME'],'forums/rss.php') and !strpos($_SERVER['SCRIPT_NAME'],'admin')) {
if ( !defined( 'ABSPATH' ) & !defined( 'XMLRPC_REQUEST' )) {
define( 'WP_USE_THEMES', false );
//
// You will need to get the ABSOLUTE path to this file |
// \|/
include_once( 'public_html/wp-blog-header.php' );
header( "HTTP/1.1 200 OK" );
header( "Status: 200 All rosy" );
}
}July 15, 2009 at 5:43 pm #49382In reply to: Multiple BP Integration…
John James Jacoby
KeymasterBecause BuddyPress runs as a site-wide plugin, as it sits today you’re stuck with one site-wide member theme. This could be manually side-stepped pretty easily though, by creating a function in your functions.php file to hook into the function used to gather the active member theme, you could theoretically sneak your own directory path in there on a per theme basis.
Haven’t tried this idea myself, and it might not be that simple in reality.
July 15, 2009 at 4:46 pm #49380In reply to: BuddyPress can’t see bp-themes
Ipstenu (Mika Epstein)
ParticipantOr.
COPY (not move) your bp theme into the normal themes folder. Now it’ll show up in the dropdown. Once there, select it, save, and voila.
Afterwards you can delete the copy.
(or you can do it with symlinks if you know how)
July 15, 2009 at 4:46 pm #49379In reply to: BuddyPress can’t see bp-themes
Paul Wong-Gibbs
KeymasterWell, yes, that’s the best way for the majority of BuddyPress users, I suspect.
However, you can work around by duplicating the BP Member Theme folder (/bptheme) into /wpcontent/themes. You don’t need to do anything else, but this should populate the list for you allowing you to save the member theme.
Or, if you know what you’re doing, apply the patch to fix this problem to your current release manually – https://trac.buddypress.org/changeset/1601/. If you do not understand PHP I would not recommend you do this, just in case you accidently introduce any errors.
July 15, 2009 at 4:32 pm #49378In reply to: BuddyPress can’t see bp-themes
Laura J
ParticipantI’m having the same problem.
I’ve got MU 2.8 and BP 1.0.2. I put the themes in the correct folder. I can activate the BP home theme inside the MU Admin, but when I go to choose a theme for BuddyPress, the only themes that show are activated WP themes.
I’ve deleted BP, dropped all bp tables from the database and reinstalled. Then deleted and reinstalled two additional times and tried basically everything suggested here to no avail.
It seems that the current “solution” is to wait for the BP 1.0.3 — is that the current suggestion?
July 15, 2009 at 3:42 pm #49376In reply to: Change Member Theme
tsalagi_red
ParticipantI think the problem is the same as I was having. It is a known incompatibility bug between WPMU 2.8.1 and BP 1.0.2. Instead of member themes, the settings box is displaying the list of home themes.
The only workaround I found was to go directly into the database and change the member theme.
July 15, 2009 at 3:28 pm #49373In reply to: How to Uninstall Buddypress?
Rohan Kapoor
ParticipantHe probably forgot to change the theme away from buddypress after deleting it. Leaving the tables does cause a problem, because then when you reinstall all the settings are still saved.
July 15, 2009 at 1:18 pm #49368In reply to: BuddyPress plugins and theme not loading
3138633
InactiveThank you DJ Paul for your reply, I didn’t open an other thread because the discussion was the same.
Ok waiting for 1.0.3
July 15, 2009 at 1:14 pm #49366y2khjh
ParticipantOk.. thanks for replying~
July 15, 2009 at 1:10 pm #49365In reply to: BuddyPress plugins and theme not loading
Paul Wong-Gibbs
Keymastermklcst, this thread has been marked as resolved. This means most people will not read any new replies to it.
Your problem is a known issue and is because you are using BuddyPress 1.0.2 on WPMU 2.8.1. I am under the impression that an interim release of BuddyPress (1.0.3) will be released soon which will improve compatibility with WPMU 2.8.1.
July 15, 2009 at 1:06 pm #49364Paul Wong-Gibbs
KeymasterThe template files for custom pages as per WordPress only work on the blog(s) on your WPMU site. If you want a custom page or area under the members page – i.e. http://myblog_url/members/y2khjh/something_here – then yes, you do need to create a custom component as the members page is part of BuddyPress.
July 15, 2009 at 1:01 pm #49363y2khjh
ParticipantSo there is not simple way to just add a template into the theme?
July 15, 2009 at 12:40 pm #49361In reply to: BuddyPress plugins and theme not loading
3138633
InactiveHi guys, i have the same probleme
You do not have any BuddyPress themes installed.
Please move "/wp-content/plugins/buddypress/bp-themes/" to "/wp-content/bp-themes/" and refresh this page. You can download more themes here.What could be?
July 15, 2009 at 10:31 am #49354AccUser
ParticipantYou could probably get away with a single install of bbPress, but you would need a plugin or some theme work.
After installing and integrating bbPress with WordPress MU, I installed BuddyPress and got the group forums working. I created a group and saw that the forum created for that group was a child of the forum that had been created during the install of bbPress. I changed that forum to be a category, so that no topics could be posted in it.
It is entirely possible that you could filter out content that belongs to that category for the main forums. So when using BuddyPress groups, you can see group forums, but when viewing the bbPress forums, the BuddyPress forums are filtered out.
I am also using the hidden and read-only plugins with the BuddyPress Groups for bbPress plugin, and that is working well. However, you could suppress the content rather than marking it up.
July 15, 2009 at 8:53 am #49348Burt Adsit
ParticipantYou should take a look at how the skeleton component does this kind of thing.
https://codex.buddypress.org/how-to-guides/creating-a-custom-buddypress-component/
July 15, 2009 at 4:09 am #49342In reply to: Change Member Theme
r-a-y
KeymasterDid you move the bpmember and bpskeletonmember directories from “wp-content/plugins/buddypress/bp-themes” to “wp-content/bp-themes“?
Also if you are using WPMU 2.8.1, there are bugs that are currently being ironed out by the BP dev team. So if you are using WPMU 2.8.1, you’ll have to find one of the workarounds on the forums.
July 15, 2009 at 2:18 am #49338In reply to: New Groupblog Plugin
peterverkooijen
ParticipantHave you copied the “groupblog” templates folder to your bp active member theme?
July 15, 2009 at 1:47 am #49337In reply to: Change Member Theme
tsalagi_red
ParticipantI too am confused about this. “BuddyPress > General Settings > Select theme to use for BuddyPress generated pages” just gives me a list of my regular installed themes (minus bphome), but there are no “member” themes in the list. Is this a bug?
July 15, 2009 at 12:16 am #49336In reply to: New Groupblog Plugin
allenweiss
ParticipantHi
I just tried installing it (which went fine), but now get this error on my group page:
Warning: require_once(/home/alumnide/public_html/wp-content/bp-themes/bpmember/groupblog/blog-activity.php) [function.require-once]: failed to open stream: No such file or directory in /home/alumnide/public_html/wp-includes/theme.php on line 822
Fatal error: require_once() [function.require]: Failed opening required ‘/home/alumnide/public_html/wp-content/bp-themes/bpmember/groupblog/blog-activity.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/alumnide/public_html/wp-includes/theme.php on line 822
Any ideas?
July 14, 2009 at 2:45 pm #49291In reply to: BuddyPress plugins and theme not loading
Jeff Sayre
ParticipantThat makes sense. I believe BP 1.0.3 will be out soon.
July 14, 2009 at 2:39 pm #49289In reply to: BuddyPress plugins and theme not loading
kipperman
ParticipantThanks,
sorry about the posting on old post.
Since I already have WPMU 2.8.1 installed I may as well stick it out and wait for the BP upgrade, I’m quite new to WP and don’t want the hassle to winding back versions.
cheers
-
AuthorSearch Results