Search Results for 'buddypress'
-
AuthorSearch Results
-
March 31, 2010 at 3:07 pm #71056
sueme
ParticipantDidn’t get a reply so I tried it anyway. It didn’t work for me.
1. The top of my page displayed the following message
function my_bp_override_core_domain() { $domain = get_bloginfo('url'); return $domain; } add_filter('bp_core_get_root_domain','my_bp_override_core_domain')2. The buddypress folder still opened as mysite/wordpress rather than just mysite.
March 31, 2010 at 2:09 pm #71052In reply to: Several Buddypress sites one login?
peterverkooijen
ParticipantI would need this as well at some point
Say you have a network of four sites. When a user tries to log in one of the sites (‘New Community’) with a username and password from one of the other three sites, he gets this:
ERROR: Invalid username. Lost your password?
Would it be very complicated to write a plugin that checks if the entered username exists in the other three databases? And then verify the user’s password by checking in that same database? And then enter that user’s data, including username + pass, into the ‘New Community’ database?
Could it copy some functions/code from the new Facebook Login plugin?
March 31, 2010 at 2:05 pm #71051In reply to: Is this how it is meant to work?
rich! @ etiviti
ParticipantExpected behavior as activity commenting and forum discussion are separate. (only a one way tie-in when a new post/reply is made and the content is sent to the activity stream). You can disable activity commenting on forum posts/topics and blogs postings.
I updated
https://wordpress.org/extend/plugins/buddypress-group-forum-extras/
which now includes an activity subplugin -> will pull in activity comments made to a topic post (no reply ability but at least someone can see the conversation from the stream)
March 31, 2010 at 1:38 pm #71050In reply to: Several Buddypress sites one login?
Andrea Rennick
ParticipantIf you did that, you’d have exactly the same BP on every single site – no separation of users.
March 31, 2010 at 1:13 pm #71048In reply to: 404 error when clicking on edit profile
mcrustk2
ParticipantIm having a very similar problem.
I have installed WordPress MU & Buddypress on a sub domain:
When I login I can click on ‘My Account’ if I click ‘Edit Profile’ I get a 404 error. Any of the other my account options such as change signature or change avatar works OK.
Also noticed that if using the Album+ plugin, when I click upload a picture it does the upload but then immediatly shows a 404.
Assume this is related in some guise to the subdomain. Maybe WordPress/Buddypress is best left on the root?
Just installed:
WordPress MU 292
BuddyPress 123
IIS6 (Hosted/Helm) PHP 5
March 31, 2010 at 1:09 pm #71047In reply to: BuddyPress Multilingual
Bowe
ParticipantOk I’ve got everything running.. But there is a problem with the activity stream. Because updates get posted in the language of the current user, you get a very weird activity stream. You get activity stream updates in different languages all mixed up. Example:
http://emberapp.com/bowromir/images/firefox-17
Can this be fixed?
March 31, 2010 at 1:01 pm #71045In reply to: Plugin Hall of Shame! :) Plugin Devs Please Read
Andy Peatling
KeymasterIf you are using hooks that fire before bp_init then you can keep them in the loader file. You must be very sure that aren’t calling any BuddyPress functions though.
If you’re not sure just deactivate buddypress with your plugin active and see if it crashes.
March 31, 2010 at 12:55 pm #71044David Lewis
ParticipantI leveraged the existing drop down method in BuddyPress and created the following code. Three files in my child theme. Modify for your needs.
- header.php
- _inc/css/custom.css
- _inc/scripts/nav.js
header.php
<div id="wp-nav-bar">
<ul id="nav" class="main-nav">
<!-- Community Drop Down -->
<li <?php if (
bp_is_page( BP_ACTIVITY_SLUG ) ||
bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ||
bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() ||
bp_is_page( BP_FORUMS_SLUG ) ||
bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo site_url() ?>/<?php echo BP_ACTIVITY_SLUG ?>/" title="<?php _e( 'Community', 'buddypress' ) ?>"><?php _e( 'Community', 'buddypress' ) ?></a>
<ul>
<?php if ( 'activity' != bp_dtheme_page_on_front() && bp_is_active( 'activity' ) ) : ?>
<li<?php if ( bp_is_page( BP_ACTIVITY_SLUG ) ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo site_url() ?>/<?php echo BP_ACTIVITY_SLUG ?>/" title="<?php _e( 'Activity', 'buddypress' ) ?>"><?php _e( 'Activity', 'buddypress' ) ?></a>
</li>
<?php endif; ?>
<li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo site_url() ?>/<?php echo BP_MEMBERS_SLUG ?>/" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'Members', 'buddypress' ) ?></a>
</li>
<?php if ( bp_is_active( 'groups' ) ) : ?>
<li<?php if ( bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo site_url() ?>/<?php echo BP_GROUPS_SLUG ?>/" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a>
</li>
<?php if ( bp_is_active( 'forums' ) && bp_is_active( 'groups' ) && ( function_exists( 'bp_forums_is_installed_correctly' ) && !(int) get_site_option( 'bp-disable-forum-directory' ) ) && bp_forums_is_installed_correctly() ) : ?>
<li<?php if ( bp_is_page( BP_FORUMS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo site_url() ?>/<?php echo BP_FORUMS_SLUG ?>/" title="<?php _e( 'Forums', 'buddypress' ) ?>"><?php _e( 'Forums', 'buddypress' ) ?></a>
</li>
<?php endif; ?>
<?php endif; ?>
<?php if ( bp_is_active( 'blogs' ) && bp_core_is_multisite() ) : ?>
<li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo site_url() ?>/<?php echo BP_BLOGS_SLUG ?>/" title="<?php _e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?></a>
</li>
<?php endif; ?>
</ul>
</li>
<?php do_action( 'bp_nav_items' ); ?>
</ul>
</div>custom.css
/* Subnav */
ul#nav li ul {width: 30.7%;}
ul#nav li ul li {float: none; width: 100%;}
ul#nav li ul li a {background: none !important; padding: 5px 15px;}
#wp-nav-bar ul li ul {position: absolute; left: -999em; z-index: 1;}
#wp-nav-bar ul li ul li a span {display: none;}
#wp-nav-bar ul li:hover ul,
#wp-nav-bar ul li li:hover ul,
#wp-nav-bar ul li.sfhover ul,
#wp-nav-bar ul li ul li.sfhover ul {left: auto;}nav.js
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes;
if (node.nodeName=
"LI") {
node.onmouseover=function() {
this.className+
" sfhover";
}
node.onmouseout=function() {
this.className=this.className.replace(" sfhover", "");
}
}
}
}
}
window.onload=startList;
j(document).ready( function() {
/* Admin Bar Javascript */
j("#wp-nav-bar ul.main-nav li").mouseover( function() {
j(this).addClass('sfhover');
});
j("#wp-nav-bar ul.main-nav li").mouseout( function() {
j(this).removeClass('sfhover');
});
});March 31, 2010 at 12:39 pm #71043In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
Participantfound the error with activity and quote being enabled at the same time (what i get for copying code and not changing the wp_enqueue_script name param. (give it 20 mins or so to update in the repo to 0.2.1)
March 31, 2010 at 12:34 pm #71042In reply to: BuddyPress-Links 0.3 FINAL is here at last
MrMaz
Participant@stwc, foxly
That defect was fixed in the 0.3 branch a while back, I just haven’t put out a point release yet.
https://plugins.trac.wordpress.org/changeset/215107/buddypress-links/branches
March 31, 2010 at 12:27 pm #71041In reply to: Groups in blogs
Kye
ParticipantWhilst not strictly what I was looking for there is a partial solution:
wp-config.php
define ( ‘BP_ENABLE_MULTIBLOG’, true );
This will allow Buddypress to run on site wide blogs rather than just on the root domain so in theory you could have a website just create a manual link to their group with their own mapped or sub domain. not sure how well all themes would work with this though, I guess it won’t hurt me to try at some point
March 31, 2010 at 12:16 pm #71040In reply to: Turn off the main blogs forum tab?
Kye
ParticipantYeah, is there an easy way to turn that tab off without altering the code. Users can post from there as well and with this being a new feature (the buddypress part) it kind of makes the site look empty of users.
Q. Can a user post to a group he’s not a member of?
I noticed after installing buddy that if I went to this directory and clicked “Start Thread” I could start a new thread in the one and only group which had been set up in my install, the problem is though that this one group didn’t have “Enable discussion forum” under the groups admin, general settings page and so it shouldn’t have a forum yet people could still post to it.
I presume this must be a bug as it would seem a little off that the group has forums turned off but yet a user can post to that groups forums from the forum directory tab?
March 31, 2010 at 12:04 pm #71038In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
ParticipantYou can tweak the timeout/sensitivity with hoverintent in the js file
2. Instead of disrupting the page layout with an expanding div, do an overlay div like snap,
i have a firefox extension that does an overlay pop-up div to preview a thread – the problem is determining the pop above or below the link depending where it is placed on the page (and scroll), for some reason I was unable to get this to work properly across all browsers for this plugin. (i think chrome has issues with scrolltop?)
So the div methods meets my needs – if someone out there wants to code in a proper div with that requirement working then i’ll add it in.
1. Instead of making the whole title “hot” for the mouseover, append a small mouseover [preview link] to the end of the topic title.
a preview button would be nice – though with the way i’m pulling data and passing it along – it was easier to use the a href.
Bug report: Activating ‘BuddyPress Forums Extras – Activity’ kills Quoting on my install. Same issue existed with 0.1.9b3.
oh bugger – i didn’t even check this. i’m able to reproduce it so i’ll get a fix up today.
Not sure what ‘Activity’ is meant to do, actually, so I’m not too worried — just wanted to check it out.
Well this is just a ‘in theory’ plugin – so if a forum post has some sort of activity stream replies/comment on it – you can view those comments directly from the forum thread (or be aware what is being talked about in the activity stream)
March 31, 2010 at 12:02 pm #71036In reply to: Several Buddypress sites one login?
Kye
Participant@ Jeff
Couldn’t Buddypress be used with the domain mapper plugin to have it enable for each domain? Or the multi-domain plugin for offering blogs on different domains from one install?
March 31, 2010 at 11:54 am #71034In reply to: BuddyPress-Links 0.3 FINAL is here at last
Anton
ParticipantI still can’t get the filter to show link votes on viewing a single link. If “Show link votes” is selected from the drop down, this is displayed “Sorry, there was no activity found. Please try a different filter.”
I have tested this on the latest version single wp site and on a wpmu site and the results are the same.
March 31, 2010 at 11:26 am #71032In reply to: [New Plugin] BuddyPress Group Forum Extras
3sixty
ParticipantTopic Preview is amazing! I’m still thinking a little about the implementation and how I might tweak it, though. The expanding DIV is clever but a little jarring, and there is no way for users to avoid it. My recommendation would be:
1. Instead of making the whole title “hot” for the mouseover, append a small mouseover [preview link] to the end of the topic title. (To conserve clutter, eventually it could optionally be linked to the new post indicator I’m working on)
2. Instead of disrupting the page layout with an expanding div, do an overlay div like snap, http://www.snap.com/snapshots_faq.php
March 31, 2010 at 11:22 am #71029In reply to: BuddyPress Multilingual
jozik
ParticipantThis can be added, we will try to include it in next release (before that we’re waiting for some more feedback).
I guess best would be to check if user is coming from some outside URL, if so – to redirect him to preferred language, otherwise let him switch languages as usual.
Thanks for valuable feedback.
BP is not wrapping extra profile fields (title and description) in textdomain – you can’t get it translated (for now). We will try to add support for this – to register extra field’s titles and labels (descriptions), so it can be translated via WPML’s ‘string translation’.
March 31, 2010 at 10:56 am #71026In reply to: BuddyPress Like
3sixty
ParticipantHow is BuddyPress “Like” better than the existing BuddyPress Favorites functionality?
I was initially excited about this plugin, and I really appreciate Hempsworth’s efforts because it works great… but I kind of agree with r-a-y in that it’s probably best to extend the existing BuddyPress “favorite” functionality:
Hey Hempsworth, looks good!
But, do you think it would have made more sense to take advantage of BP’s already-available favorite button?
I’m happy to be convinced otherwise, but at the moment I don’t see the point, and if even I can’t see the point, then my users are going to be freaked out.
March 31, 2010 at 10:13 am #71021In reply to: WP-FB connect profile.
joshmac
Participant@jimcale, you are getting those spaces because in the settings Disable Buddypress Filters is checked. This should be unchecked.
March 31, 2010 at 10:09 am #71020In reply to: E-mail domains blacklist doesn't work
Paul Wong-Gibbs
KeymasterIf you cannot rule out everything else other than BuddyPress, we aren’t going to track it down.
March 31, 2010 at 10:06 am #71017In reply to: oEmbed for BuddyPress plugin – out now!
arjdan
ParticipantNow it works, simply I disable Auto-embeds in Media Options.
Thanks
March 31, 2010 at 9:51 am #71014In reply to: BP Album+ || New Features Requests and Discussion
foxly
ParticipantRegarding problems with the BuddyPress Links plugin…

Found the defect.
The problem is being caused by two blocks of code inside the BPLinks plugin that do not account for the situation where the BuddyPress administrator disables “friend” capabilities for the site.
When friend capabilities are disabled, calling the friends_check_friendship() function will crash the user thread. We handle this problem in BP Album+ by wrapping all calls to this function in a function_exists(‘friends_check_friendship’) statement, only calling the function if it is enabled.
This is a sneaky, subtle defect that could easily be missed during testing; fortunately, BPLink’s clean, well-documented source code made it easy to isolate and correct the problem.
Here’s a simple patch:
1) In “bp-links-classes.php” at line 650
REPLACE:
if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {
$status_opts[] = self::STATUS_FRIENDS;
}
WITH:
if (function_exists(‘friends_check_friendship’)) {
if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {
$status_opts[] = self::STATUS_FRIENDS;
}
}
2) In “bp-links-core.php” at line 1128
REPLACE:
return friends_check_friendship( $user_id, $link->user_id );
WITH:
if (function_exists(‘friends_check_friendship’))
return friends_check_friendship( $user_id, $link->user_id );
else
return null;
============================================================================
WordPress MU 2.9.2
BuddyPress Version 1.2.3
BuddyPress Links Version 0.3.2
BP Album+ 0.1.8 beta
^F^
March 31, 2010 at 9:48 am #71013In reply to: BuddyPress-Links 0.3 FINAL is here at last
foxly
Participant@stwc – Found the defect.
The problem is being caused by two blocks of code inside the BPLinks plugin that do not account for the situation where the BuddyPress administrator disables “friend” capabilities for the site.
When friend capabilities are disabled, calling the friends_check_friendship() function will crash the user thread. We handle this problem in BP Album+ by wrapping all calls to this function in a function_exists(‘friends_check_friendship’) statement, only calling the function if it is enabled.
This is a sneaky, subtle defect that could easily be missed during testing; fortunately, BPLink’s clean, well-documented source code made it easy to isolate and correct the problem.
Here’s a simple patch:
1) In “bp-links-classes.php” at line 650
REPLACE:
if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {
$status_opts[] = self::STATUS_FRIENDS;
}
WITH:
if (function_exists(‘friends_check_friendship’)) {
if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {
$status_opts[] = self::STATUS_FRIENDS;
}
}
2) In “bp-links-core.php” at line 1128
REPLACE:
return friends_check_friendship( $user_id, $link->user_id );
WITH:
if (function_exists(‘friends_check_friendship’))
return friends_check_friendship( $user_id, $link->user_id );
else
return null;
============================================================================
WordPress MU 2.9.2
BuddyPress Version 1.2.3
BuddyPress Links Version 0.3.2
BP Album+ 0.1.8 beta
^F^
March 31, 2010 at 9:21 am #71011raynerlim36
ParticipantSomeone help me please! I’m rushing!
March 31, 2010 at 8:42 am #71007In reply to: BuddyPress-Links 0.3 FINAL is here at last
-
AuthorSearch Results