Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 14,801 through 14,825 (of 69,016 total)
  • Author
    Search Results
  • #230068
    danbp
    Participant

    Give this a try – add to bp-custom.php or child-theme functions.php

    This will show only blog activities on site/user activity & rss page.

    function bpfr_filtering_activity( $retval ) {
    	$retval['object'] = 'blogs';		
    		return $retval;
    	}
    add_filter( 'bp_before_has_activities_parse_args', 'bpfr_filtering_activity' );

    Codex reference: https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/

    danbp
    Participant

    You could try 2 exprimental plugins published by @imath to achive your goal. Read details here:

    1) http://wptavern.com/experimental-buddypress-plugin-adds-finer-controls-for-public-groups
    2) http://wptavern.com/new-plugin-adds-taxonomies-to-buddypress-groups

    #1 would probably be the nearest, even if the description won’t go to the group activity page 😉

    As you know, too much information kill the information.

    #230059

    In reply to: [Resolved] Error 404

    Security
    Participant

    Hi @krglok the issue seems to be with your permalink structure you have to goto your wordpress dashboard>>settings>>permalinks and select the structure something like this yoursitename.com/sample-post-name now save the settings and try vising your buddypress pages the problem should be resolved,if not make sure you have set the pages for respective components in buddypress settings for this goto dashboard>>settings>>buddypress>>pages tab and set and save the respective pages as explaned in the link provided by @danbp above.
    Note:You may have to create the pages if they are not already there thanks

    #230051
    tim_marston
    Participant

    Thanks @henrywright

    Here is the list:

    Admin Tweaks
    Advanced Excerpt
    Antispam Bee
    bbPress
    Bowe Codes
    BP Auto Activate Autologin Redirect To Profile On Signup
    Bp Clear Notifications
    BP Group Activities Notifier
    Broken Link Checker
    BuddyBlock
    BuddyPress
    Buddy Press Activity Ads
    BuddyPress Activity as Wire
    BuddyPress Activity Comment Notifier
    BuddyPress Activity Privacy
    BuddyPress Block Activity Stream Types
    BuddyPress Live Notification
    BuddyPress Profile Visibility Manager
    BuddyPress Security Check
    BuddyPress Usernames Only
    Delete Expired Transients
    Duplicator
    Email Login
    Facebook Like User Activity Stream For BuddyPress
    Google Analytics +
    Imsanity
    Infinite SEO
    Insert Headers and Footers
    Mailjet for WordPress
    Menu Items Visibility Control
    OPcache Dashboard
    Post Voting
    Pretty Link Lite
    Query Monitor
    Random Banner
    rtMedia for WordPress, BuddyPress and bbPress
    rtMedia Pro
    s2Member Framework
    SearchWP
    SearchWP bbPress Integration
    Social Likes
    Subscribe To Comments
    User Activity
    Wordfence Security
    WordPress FAQ Manager
    WP-DBManager
    WP-Memory-Usage
    wp-Monalisa
    WPBakery Visual Composer
    WP Better Emails
    WP External Links
    WP Maintenance Mode
    WPMU DEV Dashboard
    WP Widget Cache

    #230048
    danbp
    Participant

    @sandyfischler

    Boone’s plugin didn’t work anymore correctly with BP 2.1.

    Try this instead:
    https://buddypress.org/support/topic/social-media-link-icons-in-profiles/

    #230022
    irieside
    Participant

    Thanks for replying. Where do I find the WordPress settings? Under settings in the dashboard I only have access to buddypress and general settings, along with other plugin settings.

    I’m at a very amateur level with PHP, if I can avoid it that would be best. But simple adjustments are doable.

    I’ve installed that plugin, but members still report that they are unable to post. If I can adjust the ‘spam’ filter that would be awesome, to allow nearly everything besides multiple links.

    #230020

    In reply to: [Resolved] Error 404

    danbp
    Participant

    first of, ensure you correctly downloaded buddypress, than reinstall it.

    Then follow the codex, step by step

    Configure BuddyPress

    #230017

    In reply to: [Resolved] Error 404

    Krglok
    Participant

    I found the issue.
    i must change the permalinks to “Beitragsname” localhost/wordpress/Beispielbeitrag/

    with this option the create buddyPress groups will run.

    Puh, almost a little bit confousing about what the the right option.

    a little hint in installation or setup will be helpfull.

    thanks.

    #230013
    tim_marston
    Participant

    @djpaul thanks for join the thread. Here is a copy and paste from an email my host sent me:

    The other day whilst we were on the phone I was able to view the potential issue in realtime and I could see that there were a growing number of PHP processes being spawned on the server and the RAM consumption of each process kept increasing.

    I have attached a screenshot of my findings, although I do not recommend that you include this on any forum as it does include some sensitive information.

    The top left section of the screenshot displays the TOP output of your server. As you can see most of the entires were from the Phoenix user, and each process was consuming between 95-259MB of RAM each. This kept growing.

    The bottom left section was an Strace output from one of the PHP PID’s, which allows you to see exactly what a processes is doing. Each process referred to the same thing, which was something to do with buddypress.

    The top right section displayed entires from the access log in realtime. As we discussed I believe the buddypress plugin loads content dynamically without having to refresh the page, which would explain the low activity in the access log.

    The bottom right section was from the MySQL server. It displays the MySQL process-list, which was fine.

    Ideally I would first try to find a buddypress developer and then provide them with that output, as it may help point them in the right direction to find out why your site consumes too much RAM.

    Hopefully this may shed more light on my problems? Any help form anyone greatly appreciated.

    Paul Wong-Gibbs
    Keymaster

    We want it, too! There used to be some plugins around that did this for BP (I wrote one myself, in fact), but all the ones I know of are a few years old and probably out of date/won’t work any more.

    Hopefully someone can suggest something to help you out now, but I just wanted to comment and let you know this is something I think will get added to BuddyPress in one of the future releases (sooner rather than later).

    #230005
    Paul Wong-Gibbs
    Keymaster

    How do your team think it’s related to BuddyPress? If you have data that suggests that’s the problem, can you give us the details, so we can look into it?

    #230004
    Paul Wong-Gibbs
    Keymaster

    It’s not wrong. If BuddyPress is enabled, then we use our own registration URL (the first one in your post).

    #230000
    irieside
    Participant

    Update: I just found all the dead posts in the spam folder of ‘Activity’ how can I stop buddypress from labeling certain posts as spam?

    #229998
    Henry Wright
    Moderator

    Instead of using messages_new_message() to send a private message, you’d use bp_activity_post_update() to post an activity update. Note that the function accepts different arguments so you’ll need to amend those.

    See here for more info on the function.

    #229986
    Icaroferreira
    Participant

    Thank you henry, but the photo that I selected is great and BuddyPress appears small, then, should not lose resolution.

    #229983
    Henry Wright
    Moderator

    Hi @icaroferreira

    Most likely this is because your theme is displaying an enlarged version of a tiny image.

    See this link which shows you how to customise the default BuddyPress avatar sizes: https://codex.buddypress.org/getting-started/guides/customizing-buddypress-avatars/

    #229980
    tim_marston
    Participant

    Hi @shanebp thanks for commenting, no I tihnk that was just an error by my developer. Everything points to Buddypress and not RT Media but I will check the cron jobs and post back asap.

    #229979
    shanebp
    Moderator

    Although we cannot find the problem *precisely*, everything points to
    BuddyPress media.

    By ‘BuddyPress media’ do you mean RT Media ?
    Is RT Media running any cron jobs?

    #229977
    tim_marston
    Participant

    Reply from my developer to the question “finally have you been or are you able to try isolating any of those other plugins?”.

    “Isolating plugins is actually the very first step we took in this type of process (fault-finding), then themes, etc. – all the way through until everything has been checked individually. All of this has been checked and re-checked (several times, by several people).

    Although we cannot find the problem *precisely*, everything points to
    BuddyPress media.”

    I should say that we’ve been looking at this fault for around a year now so its likely we’ve checked all the obvious issues.

    #229973
    robertosalemi
    Participant

    Resolved (this time for good!):

    function admin_bar_remove_this(){
    	global $wp_admin_bar;
    	$wp_admin_bar->remove_node('my-account-buddypress');
    }
    add_action('wp_before_admin_bar_render','admin_bar_remove_this');

    Thanks.

    Hiren Purohit
    Participant

    Thanks for your reply.

    I already do customization for activity like/unlike.

    WP ulike provide for post and activity. I want for like/unlike for buddypress comments.

    #229954
    @mercime
    Participant

    @hypnoscribe @milenushka @style960 default notifications are posted at https://codex.buddypress.org/member-guide/notifications/ set up in your Profile Settings > Notifications panel. If the feature you need is not available, do create a ticket in BP Trac. Log in using your WP username and password.

    danbp
    Participant

    CSS works, so far i know, by class and ID’s, so you can use it where you want, independantly of any page or region.

    FYI, the group listing use the group template. More here:
    https://codex.buddypress.org/component/groups/

    danbp
    Participant

    hi @mulysatest,

    get inspired by this article:

    How to Create A Custom BuddyPress Members Directory

    Basically it’s a css work. See step 7 from that howto.

    Codex reference

    Template Hierarchy

    #229925
    Henry Wright
    Moderator

    Hi @zorro1965

    There’s a hook available in BuddyPress called messages_message_before_save which can be used to do things before a message is sent. So, you could write a function which checks to see if a member has authorisation to send a message and bail if not. You’d simply hook your function to messages_message_before_save

    See here for more info on how to utilise hooks.

Viewing 25 results - 14,801 through 14,825 (of 69,016 total)
Skip to toolbar