Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,026 through 17,050 (of 68,918 total)
  • Author
    Search Results
  • #180526
    BuddyBoss
    Participant

    1GB RAM is a minimum, 2GB RAM is ideal. As you scale up you may need more. On a good server setup you can actually see live (via SSH) how much of your RAM is being used up and how much is free. If you’re bottlenecking, you can contact the hosting company to add more RAM or bump you up to the next server. That is not the same as migrating to a new host… if it’s within the same company they should handle it for you seamlessly in the background.

    Another option is to use Amazon (AWS) instead of a private server and it just scales up automatically as needed – they mostly charge by data rather than by server. They will be more expensive for most sites and will be slightly harder to set up, but they are also incredibly scalable.

    A CDN isn’t really a “cache” in the way you imagine W3 working. It’s only caching resources (stylesheets, images, javascript files, etc) but not caching “content”. Your resources usually don’t go stale because they are not updated often. And if you do it properly, the cache can be broken any time you update a resource (by adding a version number to the enqueue in your theme). The version number gets appended to the URL of the resource, so if it changes the CDN thinks it’s a different file and immediately serves up a new file.

    Content does go stale. By content I mean the data that is outputting for everyone to see right on the website. Like a profile, activity page, member directory, etc. This is the stuff that plugins like W3 are primarily used to cache (among other things as well).

    You can integrate a CDN very easily using WP Super Cache. You can just turn off the content caching stuff and use it only for pushing your resources into a CDN. It’s a set it and forget it kind of setup for the most part.

    If you happen to be in the Miami area on May 9, I’ll be speaking about scaling BuddyPress at the BuddyCamp (1st day of WordCamp Miami). http://2014.miami.wordcamp.org/
    Should be a fun event.

    #180518
    pswanson22
    Participant

    I just created a file called bp-custom.php with the following code:

    <?php
    // Buddypress hacks and mods will go here

    define ( ‘BP_ROOT_BLOG’, 2);
    ?>

    I am sure that 2 is the correct number for my Tech Connect subsite. However, as far as I can see, Buddypress is still installing in the main blog. I still see the Buddypress option under settings on the main blog, and I don’t see any real options on the subsite. What am I doing wrong?

    I thought that i may need to re-install Buddypress, so I deactivated, deleted it, and then reinstalled it. No luck. Anyone have any ideas?

    Many thanks!

    #180513
    SK
    Participant
    #180511

    In reply to: Member photo galleries

    SK
    Participant

    @im4th Honestly, I don’t see why BP Media should be involved since:
    1. They are not even close to being the top media plugin for BP. rtMedia is (source http://mercime.github.io/buddyPress-2014-survey-results/index.html)
    2. By their own admission, they have taken so many manhours to build simple functionality that it seems their approach is almost prohibitive for BP core team.

    I think we should look to work more closely with rtMedia, who have built in a very short period of time a much more feature-rich and popular option than BP Media.

    Also, I strongly feel we should leverage the media management capability that is already built into WordPress.

    #180510
    SK
    Participant

    @henrywright i agree with you on that definitely, but adding some functionality that some plugins offer as built into buddypress would also help because your adding less weight from these plugins too no?

    @mcpeanut I am probably the person that asks most often for stuff to be included in the core. However I beg to differ with you on this as a general principle.

    I think you are right – if everything I need is in the core then the install will probably be faster than having a barebones core and 500 different plugins that I need to achieve the functionality I need. With you on that.

    Problem is: everyone’s “needs” may be different. That’s why WordPress and BuddyPress are extensible systems. If there are 500 features in the core and I need only 50 and the core is slower because of that, then I would be one of the people complaining about “bloat”.

    So, it’s essentially akin to drawing a line in the sand and hoping you get to the goldilocks area: a core that’s not so bare as to not be useful and not so bloated as to be inflexible or noticeably slow.

    I think there are 3 (relatively) objective tests that the developers can employ when considering whether to include a feature in the core:

    • Will the feature be useful for (or used by) a sizable majority (60%+) of users
      e.g. media management capability
    • Will the feature be used by only a significant minority (5%+) but is mission-critical for those who use it
      Mission-critical is defined as a feature without which the whole premise of the site of community (that uses the feature) will fall apart. e.g. activity widgets, facebook likebox, Genesis connect etc are not mission-critical but multisite, multilingual and hierarchical groups are
    • Do we need the feature for strategic reasons
      i.e. for marketing, competitive or usability reasons, e.g. new user activation workflow revamp
      Passing any one test should put the feature on the roadmap. If multiple tests are passed, it should be a priority.
    #180509
    SK
    Participant

    @mercime P.S. In the survey results you’ve posted http://mercime.github.io/buddyPress-2014-survey-results/index.html (awesome job by the way), when 62.31% people list Responsive and 41.33% list Responsive, mobile-first as their Preferred BP Theme Features, to which specific aspect do you think they are referring?

    #180503
    aces
    Participant

    @pswanson22
    https://codex.buddypress.org/getting-started/customizing/changing-internal-configuration-settings/ has the following:

    Set which blog ID BuddyPress will run on:
    define ( ‘BP_ROOT_BLOG’, $blog_id );

    Where $blog_id is the actual blog id number…

    #180491
    thatmtnman
    Participant

    thank you buddyboss! How much ram do you feel would be adequate.

    I guess the other thing is, a CDN is going to be acting like a cache, and so, since a buddypress site can’t use cache any way (or it serves stale content) things like W3 etc should not be part of the install?

    cheers

    #180487
    r-a-y
    Keymaster

    You could be using an older theme, which needs the new notification templates.

    Contact the theme developer and tell them to look at the following change:
    https://buddypress.trac.wordpress.org/changeset/7688/

    Take note of the five additional files that need to be created and the change to /members/single/home.php

    #180455

    In reply to: Set a default sidebar

    Renato Alves
    Moderator

    You could create sidebar-buddypress.php and change the BuddyPress page you are using to load this particular template:

    <?php get_sidebar('buddypress'); ?>

    That would be one way of doing this.

    #180446
    Henry Wright
    Moderator

    All of those are good.

    Also, the BuddyPress code is on GitHub if you need to reference quickly

    https://github.com/buddypress/BuddyPress

    #180444
    modemlooper
    Moderator

    ajax.php is for bp-default theme. Theme compatibility uses buddypress-functions.php

    #180442
    simonwillan
    Participant

    Okay I’ve found the solution. However I’m confused as to why ajax.php isn’t where the functions are being called. It appears buddypress-functions.php is where the magic happens. This confuses me slightly, what is the point in ajax.php if its never being used? The function run is : “bp_legacy_theme_ajax_addremove_friend”

    #180441
    westdael
    Participant

    If you don’t see Buddypress in Dashboard > Appearance > Menus make sure you check your Screen Options at the top of the page.

    #180423
    Renato Alves
    Moderator

    It is not a BuddyPress related question, but here it goes. At CSS-Tricks, Chris Coyer is using this plugin (https://wordpress.org/plugins/live-comment-preview/) to allow the user to preview their answer in the bbPress.

    It is not the topic, but I think you can make it work.

    Renato Alves
    Moderator

    @focallocal As far as I understood, you are trying to create a different layout for the Group Home Page.

    If that’s the case, I’d recommend you check the Theme Development Documentation (https://codex.buddypress.org/themes/), you would create a custom template for the Group Home Page and let it the way you feel best.

    Now about embedding a forum in a WP page, I know bbPress have the shortcodes (https://codex.bbpress.org/shortcodes/), you could check in the documentation how to make what you aim for.

    #180418
    modemlooper
    Moderator
    #180410

    In reply to: field visibility

    shanebp
    Moderator
    #180401
    b a
    Participant

    @boonebgorges I have a suggestion for this:

    What about not using second query at all.

    As long as I can see, this is only used to know if there is more pages and to decide if we need

    	<li class="load-more">
    		<a href="#more"><?php _e( 'Load More', 'buddypress' ); ?></a>
    	</li>

    So instead of second query we can get $per_page + 1 activity but return $per_page and instead of total, return $has_more which is function like this:

    if(count(activities) < $per_page)
      $has_more = false;
    } else {
      $has_more = true;
    }

    I have used such think with infinite scroll and it works. On the other side I’m not sure about performance but with all my logic, this should be better.

    #180395
    tevil
    Participant

    Hi Im using the twenty thriteen theme and I have set up the BP plugin according to the tuts and created the register and activation pages but they WILL NOT show up on my main page. I saw them there for literally 3 second once but then they disappeared and I can not get them back.

    Anyone have any ideas on this?
    Thanks

    actually just found this

    Twenty Thirteen Theme

    #180390
    batmanfan
    Participant

    Ok. I use bbPress and BuddyPress for my forum site and like to see if I can let user view their newly created topic post prior to actually submit the post to go live. Should I post this question here or at bbPress?

    #180389
    Hugo Ashmore
    Participant

    ? Is this a BuddyPress related question, if so you’ll need to be clearer on what you want to do.

    #180376
    modemlooper
    Moderator

    BP 2.0 adds bp_activity_add_meta()

    https://buddypress.trac.wordpress.org/browser/trunk/bp-activity/bp-activity-functions.php#L658

    But I’m not sure you can have same key. There is $unique which seems to imply you may have multiple values.

    // cc @boonebgorges

    #180349
    danbp
    Participant

    Please write in english on this forum ! 😉

    Normally you can download pt_br.po/mo files from
    https://translate.wordpress.org/projects/buddypress/1.9.x

    Have also look here:
    https://make.wordpress.org/polyglots/

    Maybe read here too:
    https://codex.wordpress.org/L10n:Localization_Teams#Portuguese_.28Portugal.29_-_Portugu.C3.AAs_.28Portugal.29

    Or see what you can find here
    http://wp-translations.org/

    #180340
    Barnabas
    Participant

    Code did not reflect change! There should be easy way to remove “all members” tab in buddypress stream without breaking the theme.

Viewing 25 results - 17,026 through 17,050 (of 68,918 total)
Skip to toolbar