Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,101 through 12,125 (of 73,928 total)
  • Author
    Search Results
  • #262239

    In reply to: Filter activities

    danbp
    Participant

    Hi,

    BuddyPress is a swissknife, when used out of the box, does a lot of things. But like a swissknife, you have to choose the knife or the tool you need precisely at the moment M. And like with the famous knife, you have to do this manually.

    Filtering the general activity.
    There is a default filter with several options,
    You can modify the activity loop display via the template,
    You can write some functions for more customization.

    This is pretty much for a component, and almost available for all BP components. Not exactly what you could qualify as “not built-in”… But you’re right, it is not “ready to use” via a “clickodrome” or a press’n’play customizer (not yet).

    If you search the forum, yo’ll find a lot of related topics, and some with working snippets.
    On the codex, you have also many information. Ie. :

    Using bp_parse_args() to filter BuddyPress template loops

    Activity dropdown filters in templates

    #262238
    danbp
    Participant

    Hi,

    It would be interesting to know why [your] developer told [you] that [your] site will not be able to manage more than 70,000 users.

    Why precisely 70,000 ?

    As @venutius already told you, there is no physical limit. And if you have the necessary cash to buy storage and bandwith, go ahead!

    A common example for a large site running BuddyPress, is profiles.wordpress.org mentioned by lead dev John James Jacoby (in 2012). It is still the case in 2016.

    Related articles:
    https://codex.wordpress.org/High_Traffic_Tips_For_WordPress
    https://wordpress.org/showcase/?s=buddypress

    #262237
    danbp
    Participant

    1) please don’t shout! (i changed your capitalized title)
    2) Global Advices is not used in BuddyPress

    #262236
    omdisa7
    Participant

    Thanks for the reply.

    BuddyPress + WordPress will work well when there are 500,000 users?

    It is important to know before, otherwise I see already now an alternative route.

    What important customizations you talking about? I’ve already been working on reducing CPU consumption etc.

    #262234
    arwenmckenzie
    Participant

    Is there any simple way to filter the activity feed. Long time ago I must have used the abandoned BuddyPress Block Activity Stream Types.

    https://wordpress.org/plugins/buddypress-block-activity-stream-types/

    For me one of the absolute downsides with Buddypress is it seems impossible to filter the activity feed in a simple way like a built in feature or a plugin (I’ve googled a lot and cannot find any).

    I cannot be the only one who is setting up a community where the users won’t care who is befriending who etc. they would just want the latest scoop from the site in the activity flow. Any ideas of simple solutions?

    Why isn’t this feature built in to the core? For me personally that would skyrocket Buddypress to a complete new level 😀

    #262232
    Venutius
    Moderator

    BuddyPress has sites with more users so there is no physical limit, however the number of users a particular installation can support is due to a large number of factors including that actual usage profile of each of those users and how you have chosen t host your install. It’s true that the larger sites often have had to undertake some pretty significant customisations in order to support such a large user base.

    #262230
    omdisa7
    Participant

    Hello,

    my developer told me that my site will not be able to manage more than 70,000 users.

    He says wordpress + BuddyPress have the user limits because there would be many calls to the database.

    All this is true? Because if it were true I have “ruined”

    #262229
    djsteveb
    Participant

    Noticed my “blogs activity” is not ordering by last posted.. or last logged in..

    first noticed that a blog showed on page two with “active 2 years 2 months ago” under the title.. even if a secondary user on a multi-user blog had added a new post.

    now I find that even if the main blog creator / main admin for that multi-site blog has logged in – it doesn’t change that display either – even after they make a new post. There is the latest post showing on the right; under ‘visit site’ button – but the blog is still showing up on page two of the results and it says “active 2 years, 2 months ago”

    everyone else seeing this with a multi-site setup?
    (wp 4.6.3 I think – in multi-site mode)
    plugins netowrk enabled:
    BP Login Redirect
    Disable Google Fonts
    MyCred
    Ultimate Branding
    WP Defender
    Wp Security Audit Log
    wpmu dev dashboard

    enabled on main site:
    adrotate
    AVChat Community PRO
    BP Local Avatars
    BP Login Redirect
    Buddyblock
    Buddypress
    IP Geo Block
    Limit Login Attempts
    Register IPs
    RtMedia
    Site Origin Widgets bundle
    Social media feather
    Succuri auditing
    User Role Editor
    Whitelist IP for Limit Login
    WP Defender
    WP Security Audit Log
    WP Polls
    Yoast Seo

    I checked in tools -> buddypress to see if there was a ‘click to recount for multi site blogs activity’ but nothing there. what makes that thing fire and update when it’s supposed to?

    Steve

    #262228
    danbp
    Participant

    You can modify the pagination (example – not tested). BP use the wordpress function paginate_link()

    https://codex.wordpress.org/Function_Reference/paginate_links

    #262227

    In reply to: Shortcodes and Pages

    danbp
    Participant

    Sorry, but you’re on a very specific wordpress plugin support. It is not the place for such basic question (what are the short codes). BuddyPress doesn’t provide shortcodes.

    This plugin is not common, and not the most easiest to use. The forum is maintained by volonteers, and unfortunately not by profesional teachers. If you are very new to BuddyPress, and apparently to WordPress too, you have to do your homework.

    You can get starter information on both codex. For BuddyPress you get access to appropriate documentation via the above menu bar.

    For WordPress, and specifically your question, click here.

    Thank you for your understanding.

    #262221
    brunobarros
    Participant

    Unfortunately it is hardcoded here: plugins/buddypress/bp-members/classes/class-bp-members-template.php line 193

    #262214
    pare81
    Participant

    Hi Guys,

    I’ve found an solution.

    For childthemes you have to check the following infos:

    BuddyPress Cover Images

    Here is what I have paste to my child themes functions.php, and now the cover image works:

    function your_theme_cover_image_css( $settings = array() ) {
        /**
         * If you are using a child theme, use bp-child-css
         * as the theme handel
         */
        $theme_handle = 'bp-child-css';
    
        $settings['theme_handle'] = $theme_handle;
    
        /**
         * Then you'll probably also need to use your own callback function
         * @see the previous snippet
         */
         $settings['callback'] = 'bp_legacy_theme_cover_image';
    
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );
    #262213
    danbp
    Participant

    OK. Let’s say that the issue is the child theme.

    What is a child theme ? An empty style.css containing a header information saying to WP, hey here is a child !

    Another file can be there: functions.php. This file is empty and will be filled in the time with custom functions.

    With BuddyPress, you can have a “buddypress” folder, containing rewamped templates. For example, the profile header template or your member directory page…

    As BP template where recently modified (2.7), you have to verify your template customization (if any). See here if it helps:

    Template Updates 2.7

    If you’re not concerned by templates, you have to check your custom functions or custom JS (if any)

    And voila.

    #262210
    danbp
    Participant

    If you create a field group called Business Details, you simply add as many fields you want!
    Let’s say, you want that users can fill about 5 companies or society. In this case, you need to create a field for each input, in other words 5 fields. And if you need more details for each, you add the fields you need, one by one:

    Business 1: [___]

    Address 1: [___]

    Office 1 hours: [___]

    Business 2: [___]

    Address 2: [___]

    Office 2 hours: [___]

    Or if you use a lot of details, you group each businness separately.

    For better clarity of the default profile details output, when you have a lot of information to display, is to use this very handy plugin: buddypress-profile-tabs

    #262209
    danbp
    Participant

    @jeffwilliams-1,

    @pare81
    ,

    did you respect the size instruction ? Sizes are theme dependant and vary from one install to another.
    When it comes to image issues under BP, you’ll need to test your install without any plugin and only a Twenty theme active (never another one) as first and check if you can upload medias.
    If OK, you activate BP and check again.

    You may also verify that the attachment folder exist and has eventually the correct write rights on the server: wp-content/uploads/buddypress/members/USER_ID/cover-image/ Similar path may exist for groups, which use /groups/GROUP_ID/ instead of /members/USER_ID/

    If all is OK with Twenty, WP and BP, you can activate your plugins, one by one and testing after each. If still OK, you activate or install the definitive theme.

    If things went wrong at this stage, you can be sure there is an issue with YOU or the theme.

    You because you have omit a setting or did a wrong setting, or the theme, because all was ok while using a Twenty…

    #262208
    pare81
    Participant

    Hi Guys,

    same Problem on my site? I use wordpress and buddypress latest Versions and latest Version of generatepress theme. I Use my Theme as Childtheme and only on Child-theme the porblem is there. On parent theme all is fine.

    Is there an Info to this Point?

    Thanks and regards
    Patrick

    #262206
    sachinbalwp
    Participant

    Hi,

    I am developing a WP site on localhost and I am using BuddyPress for the first time. This website is a community site. I have defined a base profile field group and I have other field groups based on the profession of the members. In this I have a field group called “Business”. This field group is supposed to capture the “Business details” like “Name of the company” etc for a particular business. It is possible that a member might be a businessman and he might have multiple businesses. Hence I would like to have “Business” field group repeated, so that I can capture multiple business details of the same member. Is this possible?

    WP version: 4.7 BuddyPress version: 2.7.3

    Thanks

    Sachin

    #262202

    In reply to: Question about

    aladinDr
    Participant

    Hello , maybe some understanding i asked about is it possible to stop notifying and showing people about new member joining group in buddypress groupe thank you so much , and please give me other answer it’s urgently thank you so much

    #262200
    shanebp
    Moderator

    Have you tried switching momentarily to a WP theme, like 2016?

    If you have and the issue still persists..
    You can open a bug report here.
    Be sure to include your versions of WP and BP.

    #262196
    maratalton
    Participant

    Hello, @shanebp

    Yes. I checked my cookies, and if I clear them, the notification goes away. If I trigger another notification by clicking the “leave group” button on the BuddyPress group page, the notification appears and gets stuck on the header of every page again. This happens on every browser I’ve tried.

    #262195
    Humiges
    Participant

    Not at all dear @danbp,

    I appreciate BuddyPress and its community spirit.

    I just think there is no harm in asking.

    Thanks a lot for the hint

    Have a lovely Xmas and all the best in the new year 2017 🙂

    #262193

    In reply to: Question about

    modemlooper
    Moderator

    Posting Activity from Plugins

    Scroll down to function bp_dont_save_minis. It’s an example to block saving types of activity. Only do this if you never want these items. Otherwise you’d want to filter out. Better for site speed to not save so a choice is up to you.

    #262189
    Biggerplay
    Participant

    Is it possible for buddypress users to have their Woocommerce stores?

    #262188
    rageshr007
    Participant

    Thanks Venutius…I was breaking my head for few days … looking all over for a solution.!!!…But your ticket is to hide the forum…I don’t want to hide…forum title has to be visible in index page ..Once a non-member user try to join the forum it should show a message as “you need to be member of the group…”

    I was referring this

    https://buddypress.org/support/topic/how-to-make-a-private-community/

    Have to try if it help as a work around on my requirements..?

    #262185

    https://buddypress.trac.wordpress.org/ticket/7395

    First time I’ve ever done that!

    Thanks

Viewing 25 results - 12,101 through 12,125 (of 73,928 total)
Skip to toolbar