Search Results for 'buddypress'
-
AuthorSearch Results
-
August 18, 2013 at 8:10 pm #170034
Henry
MemberTake a look at @shanebp’s posts in this thread:
Also some more info
Here:
http://blog.svnlabs.com/wordpress-user-is-online-or-offline/and here:
August 18, 2013 at 8:06 pm #170033Henry
MemberI’d also be interested to know how scalable BuddyPress is…? Never really tested it past a few thousand members.
August 18, 2013 at 5:52 pm #170026In reply to: Unable to Comment some places
JosiahW
ParticipantAnybody? I went through and disabled all plugins with the exception of bbPress and BuddyPress.
August 18, 2013 at 5:47 pm #170025In reply to: buddypress profile new tab returns permission denied
4ella
ParticipantThis is my working new tab in bp-custom.php if this helps
// Set up Custom BP navigation function my_setup_nav() { if ( user_can( bp_displayed_user_id(), 'job_applicant' ) ) { global $bp; bp_core_new_nav_item( array( 'name' => __( 'Portfolio', 'buddypress' ), 'slug' => 'portfolio', 'position' => 20, 'screen_function' => 'profile_screen_portfolio' ) ); // Change the order of menu items $bp->bp_nav['messages']['position'] = 100; } } add_action( 'bp_setup_nav', 'my_setup_nav' ); // show portfolio when 'Portfolio' tab is clicked function profile_screen_portfolio() { add_action( 'bp_template_content', 'profile_screen_portfolio_show' ); bp_core_load_template( 'members/single/plugins' ); } function profile_screen_portfolio_show() { // call your stats template locate_template( array( 'portfolio-profile.php' ), true ); }August 18, 2013 at 4:23 pm #170024In reply to: buddypress profile new tab returns permission denied
blakemacnair
ParticipantNope, still no dice, have no idea what’s causing this problem
August 18, 2013 at 3:53 pm #170023Uncle Nerdicus
ParticipantFigured out the problem myself..
I am using a theme (apparently) not updated for 3.6, so I copied the file “wp-content/plugins/buddypress/bp-themes/bp-default/members/single/activity/permalink.php” to “wp-content/themes/frisco-for-buddypress/members/single/activity/” and it solved the issue.
August 18, 2013 at 3:54 am #169997In reply to: FYI: IE8 BuddyPress Fail
jaywren
ParticipantPostScript: Thank you WordPress and BuddyPress. You are terrific!
August 17, 2013 at 10:49 pm #169988bp-help
Participant@ishanna
If you have made a child theme you could use this tutorial and it limits friends to view your profile.
http://wpmu.org/how-to-add-profile-privacy-to-buddypress/
Other than that then you are limited to the premium plugins listed above. I have tried the plugin I recommended and it works.August 17, 2013 at 3:56 pm #169964chrome88
Participanti had the same problem. there was a conflict in some themes, but others not. in my case i changed all instances of “jQuery” to “jq” in the easing function (line 1540) in the file buddypress/bp-templates/bp-legacy/js/buddypress.js
August 17, 2013 at 1:52 pm #169959In reply to: buddypress profile new tab returns permission denied
shanebp
ModeratorTry these changes:
'parent_url' => $bp->loggedin_user->domain . '/', 'parent_slug' => $bp->profile->slug,August 17, 2013 at 3:28 am #169950In reply to: buddypress profile new tab returns permission denied
blakemacnair
ParticipantSorry for the late response, but nope, that didn’t do it, still giving me the same error page.
August 16, 2013 at 8:09 pm #169940In reply to: Dashes in usernames
Hugo Ashmore
ParticipantYep this is an issue we’re aware of I did a little work on username reg process in core but this aspect is tricky and needed to be re-visited separately:
https://buddypress.trac.wordpress.org/ticket/4939August 16, 2013 at 5:13 pm #169927In reply to: Registration and Activation pages missing
bsapaka
ParticipantI had a similar problem of none of the pages showing, even with the default buddypress theme and registration enabled. The pages showed the template, but no buddypress content.
I fixed the problem by setting each page as its own parent page. As a child page, the members, group, etc did not work. As a parent page, they did.
Hope this helps!
August 16, 2013 at 3:36 pm #169926In reply to: Dashes in usernames
aces
ParticipantAugust 16, 2013 at 3:31 pm #169925In reply to: Activation Code after New Member Registration
kvdamme
ParticipantI had the exact same problem. I solved it by redirecting users to their profile page upon login by adding the code below (which I found here: http://buddydev.com/buddypress/buddypress-trick-redirect-users-to-their-profile-on-login/) to functions.php
/*let us filter where to redirect */ add_filter("login_redirect","bpdev_redirect_to_profile",10,3); function bpdev_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user) { if(empty($redirect_to_calculated)) $redirect_to_calculated=admin_url(); /*if the user is not site admin,redirect to his/her profile*/ if(!is_site_admin($user->user_login)) return bp_core_get_user_domain($user->ID ); else return $redirect_to_calculated; /*if site admin or not logged in,do not do anything much*/ }August 16, 2013 at 1:33 pm #169922In reply to: notifications do not appear in the side bar
MCLMarcos
ParticipantThanks for the reply Hugo
Excuse me, if I understand you said that this feature is only available for the bp-default. Right?
However, the theme I’m using is the bp-default. Just changed the CSS to customize it.
Before, in BuddyPress 1.6, the notification appeared normal. After the updates to 1.7 and 1.8 is that it stopped appearing.
What do you think?
August 16, 2013 at 8:40 am #169919Ella Van Durpe
ParticipantTry my plugin Rename wp-login, it does exactly what you want.
August 15, 2013 at 11:47 pm #169914In reply to: Buddypress locking a member out of his own group
kagurarap
ParticipantHmm I’ll try disabling the Page Cache and then putting DB cache back on to see if it’s the combination. It didn’t really act up until I installed the DB cache but the site seems to be getting slow from what looks like the images being uploaded by the users or a post versus the images from the site itself or code.
I’ll also check out w3total cache as well – will post with results. Thanks!
August 15, 2013 at 9:22 pm #169911Rachel Biel
ParticipantA related issue is how forum post links show up elsewhere. For example, we have a private group on facebook and I am directing them to the various forum topics that I am creating. All of the links show up as TAFA Forum Group. It gets really confusing if you post a lot of them. I would think this also has to do with how the permalinks and feeds show up. I don’t know if this is a buddypress or bbpress issue, but I hope it’s addressed in future updates. Social media is a part of our world now and buddypress needs to be able to function just as wordpress does if content can have viral potential.
August 15, 2013 at 7:18 pm #169910In reply to: Buddypress locking a member out of his own group
shanebp
ModeratorI’ve had great success using w3totalcache with most everything selected except page caching.
And I always use the memcached option – so you have to have memcache set up across all your servers.
Involves a lot of fiddling – but worth it for installs with tens of thousands of members.
August 15, 2013 at 7:09 pm #169909In reply to: Buddypress locking a member out of his own group
Hugo Ashmore
ParticipantNo you don’t cache DB stuff you do cache static objects, caching dynamic data will cause issues and BP draws heavily on DB tables.
tbh caching plugins with WP seem to be more hassle than they are worth, cause of loads of issues. Always considered caching a server aspect really and/or offloading static stuff to CDN.
August 15, 2013 at 5:23 pm #169903Roger Coathup
ParticipantMaybe I’m just confused by the naming:
I know I can do this by creating my own class named BP_Legacy in my theme and customising, but this doesn’t seem a correct approach.
Is the BP_Legacy class supposed to behave like a pluggable function? i.e. you are expected to redeclare the class with the same name?
—
On a separate but related matter — if I want to create a completely bespoke theme (not theme compat), how do I stop an instance of BP_Legacy being created and registering its actions?
I’ve tried declaring add_theme_support(‘buddypress’) hooked on to ‘after_setup_theme’, but that doesn’t stop an instance of BP_Legacy being constructed and registering its actions.
Looking at the BP_Theme_Compat constructor, it would appear that add_theme_support(‘buddypress’) should stop it — does it need to be hooked on to something earlier than ‘after_setup_theme’?
August 15, 2013 at 5:21 pm #169902In reply to: Buddypress locking a member out of his own group
shanebp
Moderatorw3totalcache is a very powerful plugin.
And it’s essential to use a caching plugin on large BP installs.
But don’t use page caching with any plugin or you will get stale pages and other issues.And you’ll have to carefully tune the plugin settings for your particular install and hosting.
It can be quite complicated. But once you get it right, the difference is dramatic.August 15, 2013 at 5:09 pm #169901In reply to: Buddypress locking a member out of his own group
kagurarap
ParticipantHi Rachel,
Thanks! It wasn’t the Hyper Cache but it looks like my database caching plugin (DB Cache Reloaded Fix) was the issue, the moment I disabled that, the “join” button was gone on his account and the text editor re-appeared for him to post on his group. I don’t understand why that would happen though for this one member due to database caching? Does this mean that buddypress doesn’t behave well with db caching plugins in general or I just need to adjust my settings somehow?
~kagurarap
August 15, 2013 at 3:36 pm #169896In reply to: login username and avatar quality
aces
ParticipantFor point 1:
See https://buddypress.trac.wordpress.org/ticket/4622#comment:8 for suggested work arounds.
Alternatively: http://wordpress.stackexchange.com/questions/66204/showing-the-users-username-in-registration-email-or-activation-page-with-buddyp
-
AuthorSearch Results