Search Results for 'buddypress'
-
AuthorSearch Results
-
March 28, 2011 at 1:04 am #108879
In reply to: Adding multiple profiles per member
Virtuali
ParticipantSub-profiles?
Eh, that would be pretty difficult to do.
However, you can do that for groups: https://buddypress.org/community/groups/bp-group-hierarchy/
March 28, 2011 at 1:00 am #108877In reply to: [Resolved] Speeding up buddypress
imjscn
Participant@gregfielding , yes, it helps.
The parallel loading has to be done with cookie free domain– the http://domain.com should not install any dynamic stuff so that it won’t pass cookie to all subdomain. If wp installed on top level domain, the benefits of parallel loading get offset by checking cookie time.
@tim, combining js is risky, but combining css is easy–just copy them into your own style sheet. The deregister the original. Here’s an example of deregisting and registing:
`function my_jscss_register() {
wp_deregister_script( ‘dtheme-ajax-js’ ); // deregister bp’s global. js
if( !is_admin()){
wp_deregister_script( ‘jquery’ ); // deregister jquery
wp_enqueue_script( ‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js’ );
// and other js you want to deregister/register
}
wp_enqueue_script( ‘dtheme-ajax-js’, ‘http://static1.domain.com/_inc/global.js’, array( ‘jquery’ ),”,true );
wp_deregister_style(‘login-with-ajax’);
// and other css you like to deregister
wp_enqueue_style(‘my-default-style”,http://static2.domain.com/’);//the combined css
}
add_action( ‘after_setup_theme’, ‘my_jscss_register’ );`March 27, 2011 at 11:55 pm #108874rossagrant
Participant@mercime you legend! Haha, didn’t even know that option existed! I think that should be set by default. Make it so much more straight forward!
Thank you.
March 27, 2011 at 11:46 pm #108875@mercime
ParticipantYes it could be confusing and personally, I want replies posted in original blog and forum posts.
Network Admin dashboard – BuddyPress > General Settings:
choose option “Disable activity stream commenting on blog and forum posts?”March 27, 2011 at 11:40 pm #108870In reply to: [Resolved] Speeding up buddypress
nanchante
ParticipantClearly, this is THE one big issue that everyone faces. I agree, thatthere needs to be an official HOW TO for page load speed and performance.
Granted everyone has different setups, but things like manually combining js and css and calling from a subdomain is something everyone should be able to do, if we are shown how.
Hosting: am on the 32gb plan with stormondemand.
March 27, 2011 at 11:33 pm #108868In reply to: [Resolved] Missing Members Directory!
@mercime
ParticipantIt says in instruction:
… open index.php in the buddypress/bp-themes/bp-default/members folder, locate this line (line 14) …If you’re currently using bp-default theme, then you need to
– create a child theme of bp-default theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
– copy the index.php at buddypress/bp-themes/bp-default/members/index.php
– paste that index.php into yourchildthemefolder/members/ folder
– open up the index.php in members folder and follow installation instructions https://buddypress.org/community/groups/bp-profile-search/
– upload child theme folder to server and activateMarch 27, 2011 at 11:27 pm #108867In reply to: [Resolved] Speeding up buddypress
rossagrant
ParticipantWhat kind of hosting is everybody using here? I’m just about to launch and expect around 30 concurrent users. I’ve gone for a semi dedicated option but am interested in what others use and where they see slowdown.
March 27, 2011 at 8:53 pm #108862PJ
Participant@djpaul. Yes I’m using MU. So I have to manually add users to my one MU blog? That sounds extremely time consuming an inefficient.
Why aren’t they automatically added?@nathanielrenton I don’t know why this is happening.
March 27, 2011 at 8:05 pm #108856In reply to: Buddypress and IntenseDebate
ds123
Participantanyone is intense debate plugin compatible with buddypress ?
March 27, 2011 at 7:16 pm #108851@mercime
Participant@sayhitoarvind This is not a BuddyPress issue. It’s more like the WordPress Anyfont plugin is messing up your multisite installation. Similar to a multisite/anyfont issue I saw in WP.org forums https://wordpress.org/support/topic/plugin-anyfont-issue-after-enabling-multi-site-in-wordpress-304?replies=2
Do resolve the Anyfont plugin issue with the plugin developer and also any multisite installation issues at https://wordpress.org/support/forum/multisite before installing BuddyPress. You need to have a stable and sound WP installation before installing BuddyPress, otherwise it’s going to be a rocky road.
Log in to WP.org forums with same username and password used here.
March 27, 2011 at 6:22 pm #108849nathanielrenton
MemberI only recently started using Buddypress. I’m not familiar with how things were in 3.0.
Is there a user setting that I need to change to have them appear under the members list?March 27, 2011 at 5:31 pm #108844In reply to: Controlling Avatar Sizes On “Activity” Page
aces
ParticipantMarch 27, 2011 at 4:51 pm #108843In reply to: How to Override the BuddyPress Avatar Override
enderandrew
MemberI want to keep my site’s theme consistent. I’m making a site for a Star Wars: The Old Republic guild. I’ve got 156 avatars. Ideally, I’d like users to be able to choose from these avatars in addition to uploading one of their own. But let’s start with something even easier. If they don’t have a custom avatar, instead of default to Mystery Man, I’d like to default to one randomly chosen from the 156. Could I just do something like this:
`$tmp = glob(‘avatars/*.gif’);
if (is_array($tmp))
{
$flist = array_merge($flist,$tmp);
}
$default_avatar = $flist[array_rand($flist)];
add_filter( ‘bp_core_mysteryman_src’, $default_avatar );`My fear in trying this out, is that every time it displayed any default avatar if would pick one at random. What I’d like is to do the randomization once in assigning an avatar to a user if they don’t have one.
March 27, 2011 at 4:29 pm #108842In reply to: BuddyPress Activity Stream as Blog Comments plugin
Sparkey
ParticipantI tried everything I could think of, I found the “reply(#)” area in the “blogactivity-loop” and copied it to the index page, but it always shows “0”, I don’t know enough PHP to know if you have to call a function first or what makes it enter the correct number.
So i have changed it to a link that says “Click to See Comments” not that great but its a personal site and it at least makes sense and isn’t as confusing.
March 27, 2011 at 4:15 pm #108841In reply to: Buddypress Causes my WordPress Ratings to Break
Profile Name
MemberDoes anybody have any ideas?
March 27, 2011 at 3:42 pm #108839In reply to: [Resolved] Speeding up buddypress
gregfielding
Participant@imjscn No, I haven’t tried that. Does it help?
March 27, 2011 at 3:27 pm #108838In reply to: BP members don’t become WP Users
Nick Forest
ParticipantI got the same problem, any luck @dharmen99
?March 27, 2011 at 2:12 pm #108837In reply to: [Resolved] Locating comments.php for editting
Sparkey
ParticipantYep, thats it. I didn’t follow the authors instructions, well until I wanted to edit the comment section it wasn’t necessary, I guess. Below is what the plugin author says:
“If needed: Copy and modified the /theme/activitycomments/ files to your default theme (important to keep the folder activitycomments into the root default theme directory)”
So I added the “activitycomments” folder to my child theme, and I am editting the file “activitycomments/blogactivity-comments.php”
‘
<?php
if ( post_password_required() ) :
echo ‘‘ . __(‘Password Protected’, ‘buddypress’) . ‘
‘;
echo ‘‘ . __(‘Enter the password to view comments.’, ‘buddypress’) . ‘
‘;
return;
endif;if ( is_page() && !have_comments() && !comments_open() && !pings_open() )
return;
?><?php printf( __('You must be logged in to post a comment.’, ‘buddypress’), wp_login_url( get_permalink() ) ); ?>
‘
Thanks everybody for the help
March 27, 2011 at 8:18 am #108834In reply to: Customizing the “activity” page in the theme files
March 27, 2011 at 7:57 am #108833In reply to: Customizing the “activity” page in the theme files
@mercime
Participant– Create a child theme.
– Copy over the file index.php from activity folder of bp-default theme to childtheme/activity/index.php
https://trac.buddypress.org/browser/tags/1.2.8/bp-themes/bp-default/activity/index.php#L10– Add the slider to above or within the content div or wherever you want in that index.php file
March 27, 2011 at 5:59 am #108828In reply to: How to Override the BuddyPress Avatar Override
enderandrew
MemberWhat if I want to do more than just replace the one default avatar?
What if I want to provide a gallery of avatars users can choose from (by uploading a bunch of avatars to a folder)?
Ideally I’d like to allow users to select from the avatars I’ve uploaded, as well as allow them to upload one of their own.
March 27, 2011 at 3:19 am #108823In reply to: [Resolved] Speeding up buddypress
ds123
Participant@gregfielding thanks for the info … my main issue is for logged in users and the very busy activity stream …. is there anyway to not display all the activity ? maybe that will load the page faster ..i use the activity stream as my homepage …. and it is very painful to hit it when logged in its sometimes a couple seconds before you see anything…. i am in the process of getting hyper db running on 2 mysql servers but what is a bummer is that even when their are 10-20 people signed in at same time its still slow …. actually even when there are only a couple the darn activity stream still lags …innodb tables….maxcdn ….w3 total cache..opcode apc
…any tips to improve the main activity load time?March 27, 2011 at 3:10 am #108820In reply to: activity page / stream loading too slow
ds123
Participant@LPH2005 THANKS FOR THE REPLY …. i already have a cdn http://maxcdn.com which pulls files so you don’t have to upload ….. other than that i don’t see what else cloudflare will do to speed up the database queries affecting the activity page …. my thinking is maybe limit the homepage activity stream to query only important stuff and leave out the friend connections etc…what do you guys think or do you know how to do this? i’ve seen a plugin that blocks certain activity items from being stored to the database does that mean they won’t be displayed on activity stream also? any ideas on how to speed it up would be great if anyone has lots of activity i’m sure has seen this issue
March 27, 2011 at 2:44 am #108819In reply to: New theme – BuddyBuilder
@mercime
ParticipantNice one @pcwriter. I think my favorite theme, FunkyBuddy, will be cooler still with the header image rotator
March 27, 2011 at 2:33 am #108818In reply to: [Resolved] Locating comments.php for editting
@mercime
Participant== I think I got it, it is maybe a plugin that I am using: “BuddyPress Activity Stream as Blog Comments” ==
Glad you found the real source and sharing the info. I didn’t expect that and I guess neither did @chouf1 @gunju2221

-
AuthorSearch Results