Search Results for 'buddypress'
-
AuthorSearch Results
-
February 7, 2009 at 7:29 pm #37425
In reply to: BuddyPress Showoff: Post your links
lauraamn
MemberHey, Guys –
I just launched it on http://www.mobiusmanitou.com.
February 7, 2009 at 7:12 pm #37424In reply to: BuddyPress Showoff: Post your links
Sgrunt
ParticipantNow http://wikiroma.it has got the social BP community: http://wikiroma.it/index.php . I will work more to customize more my theme in these days.
February 7, 2009 at 4:50 pm #37422In reply to: Required name and logout issues
Sgrunt
Participantif someone wants to take a look this is the url of my buddypress: http://wikiroma.it/index.php
it’s the community area of http://wikiroma.it that is a multi blog about Rome
nicolagreco
ParticipantI’m waiting the BuddyPress final release before starting
February 7, 2009 at 11:44 am #37415In reply to: Translating BuddyPress
MartinNr5
ParticipantOk, now I can’t edit my old post so here’s how I did it.
I use Poedit and it has a method for updating my current .po file from a .pot file. Just select “Catalog” -> “Update from POT file…” and select the new bp .pot file in the 1.0b2 release.
February 7, 2009 at 11:16 am #37414In reply to: BuddyPress Beta 2
MartinNr5
Participant@kazama: What Andy said above, update your “buddypress-home” theme to the latest version and it will solve your problems (it did for me).
February 7, 2009 at 11:01 am #37413In reply to: Translating BuddyPress
MartinNr5
ParticipantNevermind – I figured out that the .pot file has changed for 1.0b2.
Now I need to find out how I merge my current work with the new file.
February 6, 2009 at 11:18 pm #37394In reply to: BuddyPress Showoff: Post your links
matrym
MemberI just set up a new project… :
February 6, 2009 at 9:48 pm #37390In reply to: BuddyPress Showoff: Post your links
MartinNr5
ParticipantOk, I’ll throw my hat into the ring…
As for now I’m running a standard bp theme site on WPMU 2.7 and bp 1.0b2 that I’m gradually translating to Swedish (55% there). For the non-swedes here it’s a community for people working out.
I’ve semi-launched it a couple of weeks ago so there’s just a few users but the site will stay intact so if you’re A) Swedish and
working out feel free to join. 
Go look-see: http://komiformguiden.se
February 6, 2009 at 7:54 pm #37387In reply to: Navigation buttons – Where are they?
Adam W. Warner
Participant@burtadsit and kapil.bp,
I was searching for an answer of adding (or subtracting) main nav buttons, and came across this post. Very helpful and led me right to an interim answer. So, thank you.
However, if a hard code nav changes into bp-core-templatetags.php, then I would be sorry when upgrading if I wasn’t paying attention. So, this prompts my next question, is there no dynamic way to add (or hide) nav buttons? Of course there’s always a way, but one that exists?
Maybe this could be accomplished by adding a nav options section to the BuddyPress home theme? Or a BuddyPress-specific nav plugin?
Any takers?
February 6, 2009 at 7:53 pm #37386jfcarter
ParticipantThank you for your post. I thought I downloaded the buddypress combo, which is the final version. I didn’t even go to the SVN site.
Is there someplace I can double check to make sure I have the final version?
Thanks,
Jessica
February 6, 2009 at 7:50 pm #37385In reply to: home page = blogs (how do i fix??)
bdbutler
Membersorry…i should be more clear..
I meant that I set up WPMU2.7… and placed all those files in /blogs ….i chose to install it in /blogs … then, I put buddypress in /mu-plugins. Im with you so far.
Actually, my site is working fine…BUT….if I click the tab for the HOME page… (which for me should be at /blogs)..it doesnt show the home page…instead it shows the collection of blogs on my site. What is missing is that I never see the HOME page with widgets, members, groups, etc (because my HOME page is found at /blogs …does that make sense)?
if not.. take a look here: whybrasil.com/blogs
please help (i know this is simple, but please help…)
February 6, 2009 at 6:53 pm #37383In reply to: Make BuddyPress Skin Go Edge To Edge?
John Blackbourn
ParticipantIn
wp-content/themes/buddypress-home/css/base.cssremove the max-width attribute from the body (line 37 currently).February 6, 2009 at 5:19 pm #37379rishel
MemberNo idea, all i know is on that link.
February 6, 2009 at 5:17 pm #37378jfcarter
Participant1) Permissions are fine.
2) What about the fact that the path doesn’t exist?
/wp-content/member-themes/buddypress-home/index.php
This isn’t even a location! Do I need to redefine a function or something?
February 6, 2009 at 4:51 pm #37374In reply to: Buddypress causing blank page with WordPress mu
jfcarter
ParticipantI found this post and it helped (https://mu.wordpress.org/forums/topic.php?id=7393)
In file wp-includes/capabilities.php add on line 2:
require_once(‘pluggable.php’);
Worked PERFECTLY!
February 6, 2009 at 2:55 pm #37362In reply to: BPDEV-YOUTUBE to add youtube videos
nicolagreco
Participantread http://buddypressdev.org/update/dont-upgrade-svn-today-if-you-want-plugins-working/
I’ll update this plugin with the new globals introduced by Andy
February 6, 2009 at 2:47 pm #37361In reply to: Plugin: Default Friend 0.1
Paul Wong-Gibbs
Keymaster<?php
/*
Plugin Name: BP Default Friend
Author: DJPaul
Author URI: djpaul@gmail.com
Original Author: Nicola Greco
Original Author URI: http://notsecurity.com
Description: Automatically add a specified user as friend after SignUp
Plugin URI: http://djpaul.dangerous-minds.org
Version: 0.2
*/
require_once(WP_CONTENT_DIR . '/mu-plugins/bp-core.php');
function default_friend($user_id) {
global $wpdb, $bp;
$wpdb->query("INSERT INTO " . $bp . " ( initiator_user_id, friend_user_id, is_confirmed, is_limited, date_created ) VALUES (".$user_id.", ".get_option('bp-default-friend-id').", 1, 0, NOW())");
}
function default_friend_control() {
add_submenu_page("wpmu-admin.php", 'Default Friend', 'Default Friend', 8, 'bp-default-friend', 'default_friend_options');
}
function default_friend_options() {
if(isset($_POST)) {
$default_friend_id = $_POST;
update_option( 'bp-default-friend-id', $default_friend_id );
echo "<div id="message" class="updated fade">Options updated.</div>";
}
?>
<div class="wrap">
<h2><?php _e( 'Default Friend', 'buddypress' ) ?></h2>
<form action="<?php $_SERVER ?>" method="post" id="options">
<table class="form-table">
<tbody>
<tr>
<th scope="row">Default Friend ID:</th>
<td><input name="bp-default-friend-id" id="bp-default-friend-id" value="<?php echo get_option('bp-default-friend-id') ?>" />
</td>
</tr>
</tbody>
</table>
<p class="submit">
<input name="submitted" type="hidden" value="yes" />
<input type="submit" name="bp-default-friend" id="bp-default-friend" value="<?php _e( 'Save Settings', 'buddypress' ) ?>"/>
<?php wp_nonce_field( 'bp-default-friend') ?>
</form>
</div>
<?php
}
add_action('wpmu_activate_user', 'default_friend', 1, 1);
add_action('admin_menu', 'default_friend_control');
?>
February 6, 2009 at 2:12 pm #37360In reply to: Plugin Developers: Changes around $bp global
nicolagreco
ParticipantSolved
just look here guyshttps://trac.buddypress.org/changeset/1021/trunk/bp-core.php
(I wrote a post on bpdev http://buddypressdev.org/update/dont-upgrade-svn-today-if-you-want-plugins-working/)
February 6, 2009 at 11:28 am #37354In reply to: Make BuddyPress Skin Go Edge To Edge?
rishel
MemberHmmm. Still cant find it.
February 6, 2009 at 9:50 am #37350In reply to: BuddyPress Showoff: Post your links
pythagoras
Memberhttp://connect.flexcommunity.net/
It looks like we all need to get some themes going on here
February 6, 2009 at 9:30 am #37349ManuelChang
ParticipantThat is cool, did you find out if they offer a API?
February 6, 2009 at 4:02 am #37344In reply to: What Is this after my footer?
realfam
Memberwow, just put that in…………. that unfortunately did not work. The Buddypress bar is still on all pages for “LOGGED IN” users. I basically NEVER want it to appear except in the actual Buddypress User Theme, not the home theme at all.
This functionality should really be built in.
February 6, 2009 at 2:51 am #37329In reply to: Registration error
Burt Adsit
ParticipantSee this thread https://buddypress.org/forums/topic.php?id=1018
February 5, 2009 at 11:54 pm #37316In reply to: Can’t Create a Group – Am I Missing Something?
Scotm
ParticipantNope. Buddypress Home theme.
-
AuthorSearch Results