Search Results for 'buddypress'
-
AuthorSearch Results
-
May 17, 2009 at 6:42 am #45518
In reply to: skeleton componenet – link title
Burt Adsit
ParticipantThere isn’t any title=”some hover text” parameter when setting up nav items. Why don’t you post an enhancement ticket? https://trac.buddypress.org/newticket
May 17, 2009 at 6:24 am #45516In reply to: Regional Groups
Burt Adsit
ParticipantThat plugin sounds like DJPaul’s Welcome Pack. Why don’t you talk to him and make some suggestions. https://buddypress.org/developers/DJPaul/
May 17, 2009 at 5:49 am #45515In reply to: multiply buddypress installs
wildchild
Participant@Bercy: It’s wp-signup.php etc.. it’s possible to seperate all buddypress installations, although you’ve have to be creative which databases and scripts you are going to talk to when.
May 17, 2009 at 5:42 am #45514In reply to: Announcing: Events component
2878458
Inactive@Erwin how soon do you think .58 will be ready? I’m really looking forward to this plugin becoming available for buddybress 1.0. Also, does anyone know if the current twitter plugin works with buddypress 1.0?
May 17, 2009 at 5:15 am #45510In reply to: bbPress theme for Buddy
Kunal17
ParticipantHas anyone released a good buddypress style theme for bbpress yet?
May 17, 2009 at 2:26 am #45509In reply to: Default Theme Issues – HELP! :)
belogical
Participantkunal17, use this for selected class:
May 16, 2009 at 11:21 pm #45503In reply to: Can you redirect to profile on sign in?
gcs123
Participantsolved! used the plugin in this thread – however I put the plugin in ‘plugins’ instead of ‘mu-plugins’ as I am using 1.0
May 16, 2009 at 10:38 pm #45501In reply to: Can you redirect to profile on sign in?
gcs123
ParticipantI found this other thread on the forum but it relates to a previous version of Buddypress.
https://buddypress.org/forums/topic.php?id=533
I’m using BuddyPress 1.0
May 16, 2009 at 8:39 pm #45500In reply to: Translating BuddyPress
philpeter
ParticipantHope someone can help me… I’m tearing my hair out!
I’ve created buddypress-xxx.po and .mo files, put them in both /wp-content/plugins/buddypress/languages and /wp-content/mu-plugins/bp-languages
I’ve also added the following code to /wp-content/plugins/buddypress/bp-custom.php:
Code:// Activate the custom terminology for DevelopaDream
define( ‘BPLANG’, ‘developadream’ );
if ( file_exists( BP_PLUGIN_DIR . ‘/bp-languages/buddypress-‘ . BPLANG . ‘.mo’ ) ) {
load_textdomain( ‘buddypress’, BP_PLUGIN_DIR . ‘/bp-languages/buddypress-‘ . BPLANG . ‘.mo’ );
}Despite that, I’m still not getting any change in language on the site at all.
Am I missing something?
May 16, 2009 at 6:43 pm #45496In reply to: bbPress theme for Buddy
2766283
InactiveTry deleting or renaming functions.php in kakumei folder.
This is my header.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml"<?php bb_language_attributes( '1.1' ); ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php bb_title() ?></title>
<?php bb_feed_head(); ?>
<link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
<?php if ( 'rtl' == bb_get_option( 'text_direction' ) ) : ?>
<link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />
<?php endif; ?>
<?php bb_head(); ?>
<?php
add_action( 'wp_footer', 'bp_core_admin_bar', 8 );
add_action( 'admin_footer', 'bp_core_admin_bar' );
add_action( 'wp_head', 'bp_core_admin_bar_css', 1 );
?>
<!--[if IE 6]>
<link rel="stylesheet" href="<?php echo bloginfo('template_url') . '/css/ie/ie6.css' ?>" type="text/css" media="screen" />
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" href="<?php echo bloginfo('template_url') . '/css/ie/ie7.css' ?>" type="text/css" media="screen" />
<![endif]-->
<?php wp_head(); ?>
</head>
<body>
<div id="search-login-bar">
<?php bp_search_form() ?>
<?php bp_login_bar() ?>
<div class="clear"></div>
</div>
<div id="header">
<h1 id="logo">" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php bp_site_name() ?></h1>
<ul id="nav">
<li<?php if ( bp_is_page( 'home' ) ) {?> class="selected"<?php } ?>>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?>
<li<?php if ( bp_is_page( BP_HOME_BLOG_SLUG ) ) {?> class="selected"<?php } ?>>/<?php echo BP_HOME_BLOG_SLUG ?>" title="<?php _e( 'Blog', 'buddypress' ) ?>"><?php _e( 'Blog', 'buddypress' ) ?>
<li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) ) {?> class="selected"<?php } ?>>/<?php echo BP_MEMBERS_SLUG ?>" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'Members', 'buddypress' ) ?>
<?php if ( function_exists( 'groups_install' ) ) { ?>
<li<?php if ( bp_is_page( BP_GROUPS_SLUG ) ) {?> class="selected"<?php } ?>>/<?php echo BP_GROUPS_SLUG ?>" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?>
<?php } ?>
<?php if ( function_exists( 'bp_blogs_install' ) ) { ?>
<li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) {?> class="selected"<?php } ?>>/<?php echo BP_BLOGS_SLUG ?>" title="<?php _e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?>
<?php } ?>
<?php do_action( 'bp_nav_items' ); ?>
<div class="clear"></div>
</div>
</body>
<div id="main">
<?php if ( is_bb_profile() ) profile_menu(); ?>
<div class="clear"></div>
<?php include("sidebar.php");?><!-- includes sidebar -->
May 16, 2009 at 4:52 pm #45493In reply to: no bp-core.php?
Paul Wong-Gibbs
Keymastereh?
/plugins/buddypress/bp-core.php ?
May 16, 2009 at 1:14 pm #45490In reply to: Multi-language edition
jalien
ParticipantFor the backend it’s simply a matter of adding another .mo file to the language folder in /wp-content to get wpmu to be multilingual, the same goes for any other plugins, they each have to have their own .mo file.
There is a great plugin available which makes translating plugins or even the the wpmu core itself easy, and allows you to do it a little at a time. CodeStyling Localization (I am not affiliated with them in the least, but it is more than great). It allows you to do localization for themes, plugins, mu-plugins, and wpmu base code itself, absolutely awesome.
http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en
For the front end and to allow different users of any of the blogs to change the backend easily and quickly I recommend qTranslate.
http://www.qianqin.de/qtranslate/
It is easy to use and easy to setup. Non-technical users will immediately know how to use this once it is setup. The setup may not be for non-technical users on their own, but a simple how-to will easily walk anyone through it. This plugin allows visitors to see multilingual content and change the language on the blog front-end (although I haven’t really used it for multilingual switching for the social networking portion of buddypress, I’ll have to play around and see what it can do).
Each blog can have it’s main language set in the the Settings/General page with the site wide default set in Site Admin/ Options (this is built in to wpmu, it doesn’t need a plugin – it’s been there from before 1.0 if my memory is correct).
I use English and Japanese (which will often not work when the localization is not done right) so I think these are pretty good plugins that work well with wpmu’s built in localization.
May 16, 2009 at 11:53 am #45489In reply to: Multi-language edition
bobthebob01
Participanti know i’m a bit late on that topic but i do agree that it should almost be a core feature to be able to switch language file.
I’m not talking about having the content translation feature, but the front/back end stuff, basically anything showing on the localization file.
So a user can decide his default language (among the available ones) for the site.
It only makes sense: MU for WordPress MU, for BuddyPress/WordPress MU, for MUlti users, for MUlti blogs and for MUlti language.
I’ve done some research and could not find a black/white solution. it’s seems to be in the grey zone at the moment.
Has anybody been able to achieve this yet?
cheers
May 16, 2009 at 8:42 am #45488In reply to: opensocial
Jeff Sayre
ParticipantHere’s your chance to vote for OpenSocial support in BuddyPress.
Look at page three (Core), item number 5. Learn more about Open Stack here.
May 16, 2009 at 1:34 am #45479In reply to: BuddyPress For WordPress (Not MU) Coming
bryan868
ParticipantIndeed, thanks John!
May 16, 2009 at 12:20 am #45475In reply to: Things to tell developers
Jeff Sayre
ParticipantRemember, BuddyPress is just one, big plugin–a very sophisticated plugin at that. If they have zero experiencing coding WordPress plugins, then here are some key links:
- https://codex.wordpress.org/Writing_a_Plugin
- From the above link, specifically: https://codex.wordpress.org/Plugin_Resources
- https://codex.wordpress.org/WordPress_Coding_Standards
- https://codex.wordpress.org/Inline_Documentation
- http://www.slideshare.net/markjaquith/secure-coding-with-wordpress-barcamp-orlando-2009
May 15, 2009 at 11:37 pm #45473In reply to: How to new widget – NEwest members Male/Female?
2864451
InactiveAha its profil data loop, now to figure out how to use it with the select function as I have the users select from list male or female so need to figure out what to do next.
Who are the buddypress developers and how much will it cost to have such an element created for my site?
May 15, 2009 at 11:09 pm #45472In reply to: How to new widget – NEwest members Male/Female?
May 15, 2009 at 9:39 pm #45466In reply to: Internet Explorer trouble
Jeff Sayre
ParticipantCce-
Several of initial questions:
1. Have you tried switching back to the standard BuddyPress home theme? If not, do so and see if the problem still exists.
2. Have you tried deactivating all 3rd-party plugins to see what happens? If the problem goes away, you should then reactivate the 3rd-party plugins one at a time, testing after each reactivation to see if the problem has returned.
2. Are there any errors in your log files? If so, what are they?
May 15, 2009 at 9:14 pm #45461In reply to: This is why you are building a BuddyPress website
Jeff Sayre
ParticipantBurt-
Good stuff.
May 15, 2009 at 9:12 pm #45460In reply to: RC2 Upgrade issues
Jeff Sayre
ParticipantDbascent94-
Are you still having issues? A week ago you posted this:
I tried using the default themes and the same problem persists. I could really use a pointer on where to even begin looking for a fix for this
But you failed to tell us which version of BuddyPress you are running. Two weeks prior, you stated that:
I downgraded to RC1. I am going to wait for 1.0 and then try again.
Does your problem exist when using the public release version 1.0?
May 15, 2009 at 9:06 pm #45459In reply to: Community Blog – Page not found
Jeff Sayre
ParticipantWe don’t have sufficient information to beginning helping either of you. Please read this and post accordingly: https://buddypress.org/forums/topic.php?id=2674
May 15, 2009 at 8:25 pm #45455In reply to: How do I know what \”rc\” Im running?
Jeff Sayre
ParticipantLog into WPMU backend as site admin. Go to Appearances > Plugins. The version of all your plugins, including BuddyPress, is displayed there.
Here’s the versioning info you should see with regards to the BuddyPress plugin:
For BP public release version 1.0 –> 1.0
For BP RC2 –> 1.0-RC2
For BP RC1 –> each individual BP component will show up as it’s own plugin.
As of r1303, which is where RC2 started I believe, BuddyPress was turned into one, big plugin suite.
May 15, 2009 at 7:51 pm #45451In reply to: How do I know what \”rc\” Im running?
nicolagreco
Participantin the bp-core.php if i’m not wrong, at the top of the file the version is displayed another way is wp-admin ->site admin -> buddypress, look at the bottom of the page, it should be displayed
May 15, 2009 at 7:51 pm #45450In reply to: Error creating groups
Jeff Sayre
ParticipantIf you’re still having this issue, you need to remove as many variables as possible. Since you are using a custom theme and a number of 3rd-party plugins, this is where you should focus your efforts.
Before starting this process, make a backup of your MySQL DB just in case. Also, it is advisable that you back up all your custom themes and 3rd-party plugin files just in case you make some major mistake.
Now, switch to the standard themes that come with BuddyPress. Try creating a group again. If the problem appears to be resolved, switch back to your custom themes and try creating a group again. If the problem returns, contact the theme designer.
Next, assuming the problem still exists with the standard BuddyPress themes, you should deactivate your 3rd-party plugins one at a time. Deactivate just one, try creating a group again. If the problem still exists, then deactivate another 3rd-party plugin. Keep doing this until either the problem goes away, or all 3rd-party plugins are deactivated. You can also go about this the other way: deactivate all plugins except BP and then reactivate one at a time, checking to see if the issue occurs again with each new reactivation.
If you find that the problem goes away after a particular 3rd-party plugin is deactivated, then you may have found the culprit. Contact the developer of that plugin and ask for advice.
Please report the results back in this thread.
-
AuthorSearch Results