Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 40,876 through 40,900 (of 68,949 total)
  • Author
    Search Results
  • #108879
    Virtuali
    Participant

    Sub-profiles?

    Eh, that would be pretty difficult to do.

    However, you can do that for groups: https://buddypress.org/community/groups/bp-group-hierarchy/

    #108877
    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’ );`

    rossagrant
    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.

    @mercime
    Participant

    Yes 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?”

    #108870
    nanchante
    Participant

    Clearly, 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.

    #108868
    @mercime
    Participant

    It 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 activate

    #108867
    rossagrant
    Participant

    What 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.

    PJ
    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.

    #108856
    ds123
    Participant

    anyone is intense debate plugin compatible with buddypress ?

    #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.

    I 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?

    #108844
    aces
    Participant
    #108843
    enderandrew
    Member

    I 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.

    #108842
    Sparkey
    Participant

    I 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.

    #108841
    Profile Name
    Member

    Does anybody have any ideas?

    #108839
    gregfielding
    Participant

    @imjscn No, I haven’t tried that. Does it help?

    #108838
    Nick Forest
    Participant

    I got the same problem, any luck @dharmen99 :) ?

    #108837
    Sparkey
    Participant

    Yep, 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 ;-)

    #108834
    dukehm
    Member

    @mercime Thank you!

    #108833
    @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

    #108828
    enderandrew
    Member

    What 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.

    #108823
    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?

    #108820
    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

    #108819
    @mercime
    Participant

    Nice one @pcwriter. I think my favorite theme, FunkyBuddy, will be cooler still with the header image rotator :-)

    #108818
    @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 :-)

Viewing 25 results - 40,876 through 40,900 (of 68,949 total)
Skip to toolbar