Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,251 through 7,275 (of 69,106 total)
  • Author
    Search Results
  • #270895
    baccoeur
    Participant

    No pages will register, however WP says that the settings are saved.

    I also have Buddypress Version 2.9.3 and WordPress Version 4.9.4

    starvoters1
    Participant

    After posting this, I found CSS that works to remove the menu items, if it helps anyone else.

    https://premium.wpmudev.org/forums/topic/how-to-customize-or-delete-buddypress-standard-menus

    For the site CSS I set:
    a#user-notifications {display : none !important}
    a#user-invite-anyone {display : none !important}
    a#user-settings {display : none !important}

    #270880
    David Cavins
    Keymaster

    BP adapts to any theme you use. If you’re looking to customize specific aspects, you can take advantage of the BP template hierarchy:

    Theme Compatibility & Template Files

    #270879
    David Cavins
    Keymaster

    Are you using BuddyPress member types, or something else?

    Member Types

    #270878
    David Cavins
    Keymaster

    Hi, there are a lot of reasons that email fails. There’s a current issue with non-SSL domains and Outlook.com for instance: https://buddypress.org/support/topic/buddypress-emails-not-going-out/

    If you’re not receiving any emails from your WordPress site, start by testing your site setup with this plugin: https://wordpress.org/plugins/check-email/

    In any case, we’ll need more detail, like what the user’s email address domain is, to help you troubleshoot.

    #270876
    David Cavins
    Keymaster

    Hi @jcrr-

    Please open a ticket about this issue: https://buddypress.trac.wordpress.org/

    Sounds like you’ve gathered some useful/interesting/disturbing info about the underlying issue.

    Thanks!

    -David

    #270875

    Hey Kristjan,

    Congrats on the success of your community!

    BuddyPress is designed and architected to scale quite elegantly, so long as the underlying hardware can also support it. It’s a bit of a non-answer, but is ultimately what it boils down to.

    (For example, WordPress.org has about 13 million registered user accounts, and on any given day they are active across the various connected properties, but there are a few dozen web servers handling the constant database reads & writes, API calls for software updates, caching various parts, etc…)

    Group creation (and subsequent user memberships) all eventually just bubble down to a singular and easy to use function call, so depending on your parameters, and with a small custom plugin, could be automated pretty easily. Nothing exists in BuddyPress itself to facilitate the automation part, but there’s nothing preventing it either.

    Perhaps to more directly answer your question, there is no technical limitation to the number of users or groups or group members your community could have, beyond the limitations of MySQL, PHP, and modern computing itself (maximum 32 bit integer value, etc…)

    #270874
    David Cavins
    Keymaster

    Hi, it looks like there is a potential issue with the unsubscribe header (at least causing unexpected behavior from Outlook.com ):

    BuddyPress New User Activation Emails & Resends not working

    Sounds like your address should be https, and there are ways to improve your server’s setup to handle mail:

    8 Best Practices To Improve Your Email Deliverability

    #270873
    David Cavins
    Keymaster

    Hi, it looks like the issue is unexpected behavior from Outlook.com:

    BuddyPress New User Activation Emails & Resends not working

    Ending up in spam is not surprising. Email is complicated, and you can check the web for guides about improving email deliverability from your server. Here’s one:

    8 Best Practices To Improve Your Email Deliverability

    #270870
    David Cavins
    Keymaster

    Hi @jameshh93-

    You’ll have to make sure that you’re removing the action _after_ it’s been added, which is when the activity component is loaded.

    Here’s a handy list of BP startup actions: https://codex.buddypress.org/developer/buddypress-action-hook-sequence-during-startup/

    I’d probably try something around the bp_loaded action, like this:

    
    add_action( 'bp_loaded', function() {
        remove_filter( 'bp_activity_post_update', 'bp_activity_make_nofollow_filter' );
    } );
    

    Also, I’m not sure you’re targeting the right action. The nofollow filter is applied in these cases:

    
    add_filter( 'bp_get_activity_content',               'bp_activity_make_nofollow_filter' );
    add_filter( 'bp_get_activity_content_body',          'bp_activity_make_nofollow_filter' );
    add_filter( 'bp_get_activity_parent_content',        'bp_activity_make_nofollow_filter' );
    add_filter( 'bp_get_activity_latest_update',         'bp_activity_make_nofollow_filter' );
    add_filter( 'bp_get_activity_latest_update_excerpt', 'bp_activity_make_nofollow_filter' );
    add_filter( 'bp_get_activity_feed_item_description', 'bp_activity_make_nofollow_filter' );
    

    the get_content action I’d probably try first is bp_get_activity_content_body when the activity is generated for display.

    #270866
    leog371
    Participant

    You could use Buddypress’s natural refresh auto load feature for the Activity Stream, Just tie into it like the activity stream does.

    #270857
    HDcms
    Participant

    Hello,
    In production, I can not disable one by one the extensions because nothing would work

    I have other mistakes if it can give …
    [18-Feb-2018 09:45:37 UTC] PHP Warning: Illegal offset type in /home…/wp-content/plugins/buddypress/bp-activity/bp-activity-functions.php on line 734
    [18-Feb-2018 09:56:07 UTC] PHP Warning: mysqli_query(): MySQL server has gone away in /home/…/wp-includes/wp-db.php on line 1924
    [18-Feb-2018 09:56:07 UTC] PHP Warning: mysqli_query(): Error reading result set’s header in /home/…/wp-includes/wp-db.php on line 1924

    #270849
    liutauras2
    Participant

    Hello buddy, I have a question, how did you managed to make that users would get their username similar to their buddypress display name?

    #270845
    jameshh93
    Participant

    Or if not how can I just turn off the rel nofollow for all users then?

    Posted on Bbpress forums and looks as though the solution provided their for getting rid of nofollow seem to get ignored when buddypress activated see link to forum thread

    Remove rel=”nofollow” for admin only?

    #270837
    Venutius
    Moderator

    Yep BuddyPress has it’s own registration page, it ususally automatically creates it – register though in reality buddypress does not use this pages content and just uses the pages slug as an anchor. You can go to Dashboard>>Users>>Profile Fields to add additional profile fields to the register page, you just add them to the Main field group. These are added to the right side of the registration page in the same order as viewed in the main profile group page.

    #270834
    lemazing
    Participant

    Does Buddypress have its own registration for users, and can I altar the registration from the admin side?

    #270823
    jameshh93
    Participant

    Iv been searching around everywhere and cannot seem to find any solution for this? 🙁
    Looks like this is something to do with it

    wp_rel_nofollow_callback() – Callback to add rel=nofollow string to HTML A element.

    #270815

    In reply to: Select box value pairs

    Venutius
    Moderator

    I don’t think they work that way, I also looked at BuddyPress Xprofile Custom Fields but that did not allow for that, just a single field to enter the value. You might want to suggest it as a feature request on BuddyPress Trac:

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

    #270809
    djsteveb
    Participant

    Thanks for pointing this out @espellcaste!

    Would it be good for me, or anyone else, to add some info to the ticket(s) (not sure if https://buddypress.trac.wordpress.org/ticket/7393 marked as dupe is kicking it back to the other one, of if the other is kicking it back to this one) –

    anyway, would it be good, or be considered rude to mention that this may be required by the ggrp thing that the countries in Europe are expecting web sites to provide with possible fines for violating?

    I kind of want to add some info to one of the tickets there, again not sure which one would be the appropriate one, but would like to add that since they are thinking about data in regards to groups, we may need to consider stripping info that others may have posted, whether it be in groups, or in private messages, as someone could end up with an export of info that had been set to be deleted or otherwise blocked / removed from the other user – and so it may be innaopriate to include messaging from groups or otherwise that was not added by the user him/herself.

    Also I think we would need a way to include media, pictures used for avatars and used via plugins like rtmedia / mediapress in order to not just be thorough and kind, but to also be in compliance with the ggrp thing.

    <- obviously I am not a lawyer and not well versed in this thing as far as all that goes.

    However on another side I think exporting the data as a backup will potentially increase the suablity of buddypress exponentially as well. I am looking into helping spawn some methods for people to more easily launch a bp for their family musings and another instance for friend circles – this would be great during the term of hosting – but backups would be needed to prevent loss of presious family photos and such should a hack occur, or hosting not get paid, etc.

    So backups, and a method for auto exporting I think is the missing piece at this point to really push for a much greater adoption of BP, which is really close to being a viable, and more private / controlled replacements for FB at this point.

    the time is ripe for this.. hope we can make it happen before end of school year somehow.

    #270807
    Renato Alves
    Moderator

    There is already a ticket about it: https://buddypress.trac.wordpress.org/ticket/408

    #270803
    Venutius
    Moderator

    You should be able to over-load the Activity-Loop so that it does not show new posts:

    Activity Loop

    How To Customize The BuddyPress Activity Loop

    #270799
    Nik
    Participant

    Hi there and thank you for your reply.

    Definitely not browser specific as I also tried Firefox and Chrome.

    However… I’ve just tested on my semi-live dev server and it seems to be working OK, which seems to leave my localhost (xampp) as the culprit. Maybe a permissions setting on the database(?) – although everything else seems to work perfectly fine (even including updating the profile photo). Maybe some other xampp setting that conflicts with the latest version of Buddypress and the way it uploads/saves the cover image?

    Since it seems to work on the dev server, I’m going to cross my fingers that it will also work live, so it’s no longer a major issue… still curious though as would be good to have the localhost version working too.

    #270781
    David Cavins
    Keymaster

    I’d override the template by copying the existing template at wp-content/plugins/buddypress/src/bp-templates/bp-legacy/buddypress/members/single/member-header.php

    and adding it to my theme at: buddypress/members/single/member-header.php

    Add a permissions check around the block you’re wanting to restrict access to (something like this):

    
    <?php if ( bp_current_user_can( 'bp_moderate' ) ): ?>
    	<span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_user_last_activity( bp_displayed_user_id() ) ); ?>"><?php bp_last_activity( bp_displayed_user_id() ); ?></span>
    <?php endif; ?>
    

    Read more about the template hierarchy here: https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

    #270761
    Varun Dubey
    Participant

    @stevie79 You can easily use custom css

    #buddypress span.activity {
        display: none!important;
    }
    #270757

    In reply to: no email

    Varun Dubey
    Participant

    @panthony54 You can install email template again from Tools >> BuddyPress.

Viewing 25 results - 7,251 through 7,275 (of 69,106 total)
Skip to toolbar