Search Results for 'buddypress'
-
AuthorSearch Results
-
July 9, 2009 at 7:39 am #48906
In reply to: BuddyPress Showoff: Post your links
Robert
Participantok, here’s my first buddypress powered site ready to go public.
As you can see my theme was very much inspired but the buddypress website.
Hope you like.
July 9, 2009 at 7:35 am #48905In reply to: Wire e-mail notifications
Michael Berra
ParticipantOk, I created a ticket: https://trac.buddypress.org/ticket/837
July 9, 2009 at 6:20 am #48904In reply to: BuddyBar for bbPress
John James Jacoby
KeymasterI actually just brought that up to Sam on IRC about 24 hours ago, as the same thing is happening here at buddypress.org also. Good catch.
July 9, 2009 at 3:05 am #488973125432
InactiveThis is almost like a sci-fi movie! The system continues to learn, and not from users logging in to the system. At 3 pm, there were 250 members listed in the Member directory by counting each of the listings for all of the letters. By 7:30 pm, there were 300 members listed in the Member directory. Since our Buddypress folder is login protected, no one has accessed the yet to be announced social network.
But I am also shocked by something else – user avatars are starting to populate the member directory profiles and yet because of our member login script, I can see who has logged in to our website and it has been all of three people this afternoon.
This makes me think there is some external wordpress connection where people who have a wordpress account somewhere else have their avatars associated with an identical email to those profiles in our Buddypress installation.
This would also give logic to Andy’s explanation that the member’s appear after they have logged in. If those members are wordpress enabled somewhere else and are logging in, perhaps their profiles are suddenly populating the Member Directory.
Does that make sense? I certainly hope so because otherwise I will freak that there is a security breach in the system.
– Brian
July 9, 2009 at 2:57 am #488963125432
InactiveFixing the username with a space in it – what are the options?
1. Delete the user and fix the username in the external database?
2. Change the settings in the site admin ‘users’ for the display name?
I ask because I have endured 4 system crashes and I am less than eager to recrash. Does the system remember the email addee if the user has been deleted, or is the entire user record wiped from the db tables?
Thanks everyone for your thoughts, in advance, and thanks to Jeff Sayre for directing me to this topic.
– Brian
July 8, 2009 at 11:42 pm #48886In reply to: Trying to Run a if group = "this name"
chrisknade
ParticipantI have tried it, with this code
<?php get_header(); ?>
<div id="content" class="widecolumn">
<h2 class="widgettitle"></h2>
<div id="localphone">
<?php if ( bp_has_site_groups() ) : ?>
<div class="pag-count" id="group-dir-count">
<?php bp_site_groups_pagination_count() ?>
</div>
<div class="pagination-links" id="group-dir-pag">
<?php bp_site_groups_pagination_links() ?>
</div>
<?php while ( bp_site_groups() ) : bp_the_site_group(); ?>
<?php $localPhone = bp_get_the_site_group_name() ?>;
<?php if ($localPhone=
"Manchester" || $localPhone=
"Test Group") {
echo '<dl>';
echo '<dt><a href="http://business-chamber.com/featured-<?php bp_get_the_site_group_name() ?>/" title=""><?php bp_get_the_site_group_avatar_thumb() ?></a></dt>';
echo '<dd><?php bp_get_the_site_group_name() ?></dd>';
echo '</dl>';
} else {
echo 'hello';
}
?>
<?php endwhile; ?>
<?php else: ?>
<div id="message" class="info">
<p><?php _e( 'There were no groups found.', 'buddypress' ) ?></p>
</div>
<?php endif; ?>
</div>
<?php get_footer(); ?>Im now getting
;
;
hello;
I definately have the 2 test groups there and it is doing something right, as in only returning the hello for the last one where I don’t have a || condition.
July 8, 2009 at 11:34 pm #48882r-a-y
KeymasterCan you post your full <ul id=”header”>?
I have a feeling something is messing up there.
—
Actually you know what?
Use the default header from the original bpmember theme… and see if you get any weird bugs.
<ul id="header">
<li<?php if ( bp_is_page( 'home' ) ) {?> class="selected"<?php } ?>><a href="<?php echo get_option('home') ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a></li>
<li<?php if ( bp_is_page( BP_HOME_BLOG_SLUG ) ) {?> class="selected"<?php } ?>><a href="<?php bp_home_blog_url() ?>" title="<?php _e( 'Blog', 'buddypress' ) ?>"><?php _e( 'Blog', 'buddypress' ) ?></a></li>
<li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) ) {?> class="selected"<?php } ?>><a href="<?php echo get_option('home') ?>/<?php echo BP_MEMBERS_SLUG ?>" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'Members', 'buddypress' ) ?></a></li>
<?php if ( function_exists( 'groups_install' ) ) { ?>
<li<?php if ( bp_is_page( BP_GROUPS_SLUG ) ) {?> class="selected"<?php } ?>><a href="<?php echo get_option('home') ?>/<?php echo BP_GROUPS_SLUG ?>" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a></li>
<?php } ?>
<?php if ( function_exists( 'bp_blogs_install' ) ) { ?>
<li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) {?> class="selected"<?php } ?>><a href="<?php echo get_option('home') ?>/<?php echo BP_BLOGS_SLUG ?>" title="<?php _e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?></a></li>
<?php } ?>
<?php do_action( 'bp_nav_items' ); ?>
</ul>July 8, 2009 at 11:16 pm #48876In reply to: BuddyBar for bbPress
r-a-y
KeymasterOne other bug I encountered when using the BuddyBar was the second-level menus weren’t popping out in bbPress.
I found out that the problem is due to some CSS rules overriding one another.
In /plugins/buddypress/bp-core/css/admin-bar.css, move line 177 under
#wp-admin-bar ul li:hover ul ul, #wp-admin-bar li.sfhover ul li ul {
left: -999em !important;
}So your admin-bar CSS from line 171 should look like:
/* third-and-above-level lists */
#wp-admin-bar ul li ul ul {
margin: -28px 0 0 183px !important;
}
#wp-admin-bar ul li:hover ul, #wp-admin-bar ul li li:hover ul, #wp-admin-bar ul li.sfhover ul, #wp-admin-bar ul li ul li.sfhover ul { /* lists nested under hovered list items */
left: auto !important;
}
#wp-admin-bar ul li.align-right:hover ul {
right: 0 !important;
}
#wp-admin-bar ul li:hover ul ul, #wp-admin-bar li.sfhover ul li ul {
left: -999em !important;
}
#wp-admin-bar ul li:hover ul, #wp-admin-bar ul li li:hover ul, #wp-admin-bar ul li.sfhover ul, #wp-admin-bar ul li ul li.sfhover ul { /* lists nested under hovered list items */
left: auto !important;
}
... and the rest of it hereThat was the case for me anyway! If you’re using a custom admin-bar CSS, make sure you make the change as well.
July 8, 2009 at 11:14 pm #48875connorg
ParticipantWhat i did was go into the header.php file for the bp-home theme, and edited what was within the <ul id=”header”> tag. For example, this is what I have for the Games page I created through the Dashboard:
<li<?php if ( bp_is_page( games ) ) {?> class="selected"<?php } ?>><a href="<?php echo get_option('home') ?>/<?php echo games ?>" title="<?php _e( 'Games', 'buddypress' ) ?>"><?php _e( 'Games', 'buddypress' ) ?></a></li>. The only differences are those I felt were relative to the new page.such as where it says bp_is_page, I put games into the perenthesis instead of what was there before.July 8, 2009 at 10:20 pm #48866Jeff Sayre
ParticipantThis may shed some light: https://buddypress.org/forums/topic/when-logged-in-to-buddypressorg-some-links-do-not-work
July 8, 2009 at 10:14 pm #48864In reply to: Add you blog search to the search
yairnazz
ParticipantWell if you need the code…. does this help
function bp_search_form_type_select() {
// Eventually this won't be needed and a page will be built to integrate all search results.
$selection_box = '<select name="search-which" id="search-which" >';
if ( function_exists( 'bp_blogs_install' ) ) {
$selection_box .= '<option value="">' . __( 'Games', 'buddypress' ) . '</option>';
}
if ( function_exists( 'groups_install' ) ) {
$selection_box .= '<option value="groups">' . __( 'Groups', 'buddypress' ) . '</option>';
}
if ( function_exists( 'xprofile_install' ) ) {
$selection_box .= '<option value="members">' . __( 'Members', 'buddypress' ) . '</option>';
}
$selection_box .= '</select>';
return apply_filters( 'bp_search_form_type_select', $selection_box );
}
function bp_search_form() {
$form = '
<form action="' . bp_search_form_action() . '" method="post" id="search-form">
<input type="text" id="search-terms" name="search-terms" value="" />
' . bp_search_form_type_select() . '
<input type="submit" name="search-submit" id="search-submit" value="' . __( 'Search', 'buddypress' ) . '" />
' . wp_nonce_field( 'bp_search_form' ) . '
</form>
';
echo apply_filters( 'bp_search_form', $form );
}July 8, 2009 at 9:12 pm #488553125432
InactiveAndy,
Thanks for the reply.
Wanted to make note of one other strange behaviour. To safeguard our members’ privacy (gay and lesbian sports site), all our members appear in Buddypress and in our website with only their login name. The external plugin member script passed the login name as the “Full Name” to avoid the breach of privacy.
Now the strange twist: any login name click from the member directory or even the home page that is actually two words, say ‘VW Bug’ with no underscore inbetween returns to the home page and not to the user’s profile. All one word logins, or logins with underscores inbetween, or logins with d.x.batman return the user’s profile.
Very strange.
Thanks,
Brian
July 8, 2009 at 8:55 pm #48853In reply to: Comments won't display on main blog
r-a-y
KeymasterI think I’ve got it.
Do you have the same functions.php in your “buddypress-home” theme?
This is the code that does the magic:
function bp_show_home_blog() {
global $bp, $query_string;
if ( $bp->current_component == BP_HOME_BLOG_SLUG ) {
$pos = strpos( $query_string, 'pagename=' . BP_HOME_BLOG_SLUG );
if ( $pos !== false )
$query_string = preg_replace( '/pagename=' . BP_HOME_BLOG_SLUG . '/', '', $query_string );
query_posts($query_string);
if ( is_single() )
bp_core_load_template( 'single', true );
else if ( is_category() || is_search() || is_day() || is_month() || is_year() )
bp_core_load_template( 'archive', true );
else
bp_core_load_template( 'index', true );
}
}
add_action( 'wp', 'bp_show_home_blog', 2 );July 8, 2009 at 8:43 pm #48850In reply to: Different user account types
peterverkooijen
ParticipantThose are all WP plugins and not WPMU ones.
I would steer clear of them.
Wishlist claimed to me their plugin works with WPMU/Buddypress. Haven’t tried it yet, but I trust the MU/BP developers did not break the basic registration process.
Also MU/BP is obviously a big potential market for these plugins, so you can kinda expect they make sure they work.
July 8, 2009 at 8:41 pm #48848In reply to: Comments won't display on main blog
r-a-y
KeymasterOkay I think I can safely say it’s a BP theme issue.
You need to make sure your code is exactly the same as the default wp-content/themes/bphome/comments.php (or wp-content/plugins/buddypress/bp-themes/bphome/comments.php)
Try that.
July 8, 2009 at 8:37 pm #48847In reply to: Different user account types
r-a-y
KeymasterHey Peter,
Those are all WP plugins and not WPMU ones.
I would steer clear of them.
The Supporter plugin I listed is WPMU-compatible (and as far as I know, BuddyPress-compatible, although I haven’t tried or bought it myself! hehe).
July 8, 2009 at 8:34 pm #48844r-a-y
KeymasterThe Invite Friends plugin hasn’t been updated for BP 1.0.2 yet.
I just checked Giovanni’s blog (the developer of the plugin) and he says that a new release will be up in a few days.
July 8, 2009 at 8:33 pm #48843In reply to: Comments won't display on main blog
r-a-y
KeymasterI can’t access your site at the moment because the DNS isn’t resolving to your website.
Sounds like it could be a BP issue after all, but a lot of other BP sites have comments working fine:
eg. http://simplercomputing.net/bp/blog/buddypress-chat-plugin/
Silly question, do you have comments enabled on the main blog?
July 8, 2009 at 8:26 pm #48842Mohit Kumar
ParticipantI had a problem with the invite-friend plugin.It was not working though i provided the correct api for yahoo,hotmail and facebook.Is it compatible with current version of buddypress??
Second thing was problem with event plugin.I was unable to create any events.So i disabled it.
I am not so good at programming but i have learnt that we can implement a REST based method to call for a invite friends sort of plugin? Any IDeas??
July 8, 2009 at 8:21 pm #48841In reply to: Comments won't display on main blog
3411446
InactiveI am actually using a custom theme I made myself by modifying the buddypress home theme. It is the only theme available on the website. I’ve disabled all others.
Here is the link to the website. http://entreprenuerinmaking.com
You will notice that viewing articles at http://entreprenuerinmaking.com/blog you do not see the comments section, but if you go to http://entreprenuerinmaking.com/twd the comments section is visible.
Placing echo statements in the theme files further shows that the /blog site is using index.php to serve a single article, while the /twd site is using single.php to serve a single article. They should both use the single.php file. In order to resolve my issue I have to figure out why.
July 8, 2009 at 8:08 pm #48838In reply to: Comments won't display on main blog
r-a-y
Keymastertwdsje, by the sound of it, I’m guessing you’re using the default WordPress MU home theme.
You can choose a different theme you know!
Do you even have BuddyPress installed?
If you do, select the BuddyPress home theme or some other WordPress theme in the WPMU admin area and you’ll see something entirely different.
That’s the beauty of themes!
July 8, 2009 at 8:02 pm #48837In reply to: default to ‘just a username’
r-a-y
KeymasterHey Peter,
It’s safe, but when upgrading to the newest BP version, you’ll have to remember to make this change again.
Either that, or until some option in the admin area is made.
I’m using BeLogical’s fix plus a CSS hack to hide the “Create a Blog” field right now.
—
There is no voting system, Peter. Although you can leave a message on the trac:
https://trac.buddypress.org/ticket/835
You can login with your existing BP username and password there.
July 8, 2009 at 7:46 pm #48835In reply to: default to ‘just a username’
peterverkooijen
ParticipantShould be an option in “BuddyPress > General Setup”.
Absolutely. Was wondering about this. Where can I leave my vote of support?
Is BeLogical’s hack safe as a temporary solution or can it cause all kinds of unforeseen mayhem?
July 8, 2009 at 7:37 pm #48833In reply to: Group forums not working (again)
TheEasyButton
ParticipantThis might sound silly but, here’s what I would do (after backing everything up). Leave your bb-config file. Delete everything else in the forums directory. Upload alpha 6. Then, upload bbPress 1. Don’t DELETE alpha 6. Just overwrite it. I’ve been messing with this upgrade for a couple of days now and if I delete/replace, the update doesn’t work. If I overwrite, it does work. Seems as though there’s a file that’s been removed from the new version that buddypress looks for.
If that doesn’t work…..
I’m wondering if your upgrade actually upgraded. The way I do the update is, I rename bb-config to something like bb-config2. Then I replace the files in the forums directory & navigate to /forums. It asks for your database info & then says “oh. There’s already a database. Maybe you want to use the upgrade script” You click the upgrade link and it does a couple changes and says it’s done. Then, I open up the newly created bb-config & (using the OLD bb-config) I put back any of the custom codes that I need such as the cookies & defines.
I hope something in there helps.
July 8, 2009 at 7:29 pm #48832In reply to: No input file specified.
r-a-y
KeymasterLooks like your BP site is up and running!
What is your problem again?
Are you saying you can’t access the BuddyPress menus in the WPMU admin area?
ht*tp://example.com/wp-admin/admin.php?page=buddypress/bp-core.php
What happens when you try to go there?
—
It could be an issue with RewriteRules if you changed the settings in the .htaccess file…
-
AuthorSearch Results