Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • Plugins
  • Themes
  • Documentation
  • Blog
  • Support
  • Download

BuddyPress.org


  • Register
  • Lost Password
  • Log In

@kizinko active 1 year, 2 months ago
  • Personal
  • Mentions
  • Favorites
  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 8 months ago

    I have been trying a bunch of stuff, but I’m not even sure if I’m doing it right. Does this look right to you?

    if ( $bp->current_component != $bp->activity->slug || $bp->current_component != $bp->members->slug || is_null($bp->current_component) […]

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 8 months ago

    Well, thank you anyway for trying. Does anyone else have any ideas?

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 8 months ago

    No such luck.

    I replaced
    if ( $bp->current_component != $bp->activity->slug )
    with
    if ( $bp->current_component != $bp->activity->slug || $bp->current_component == $bp->members->slug )
    and the individual user activity […]

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 8 months ago

    Just realized that the code above works on an individual user’s activity stream (e.g. …/members/*username*/activity/groups/). It hides the activity from the group I want to hide, but I don’t want to hide it from here. I actually […]

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 8 months ago

    Hey,

    I tried the following code from your post above, but it still isn’t working. :-( The activity from the group I’m trying to hide is still showing up on the home page.

    ‘
    function bp_my_activity_filter( $a, $activities […]

  • Profile picture

    kizinko replied to the forum topic Removing group subnav items in the group How-To and Troubleshooting 1 year, 9 months ago

    You can hide it using CSS.

    #members-personal-li {display:none;}

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 9 months ago

    Ok, so I definitely typed code in those back ticks from the post above, but it didn’t show up. The code without the php tags surrounding it is:

    while ( bp_activities() ) : bp_the_activity();
    if(bp_get_group_name() != ‘Failed […]

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 9 months ago

    Ok, so I finally got the code to do something without breaking the site, but it did the opposite of what I need. It still shows the posts on the home page for the group that I’m trying to hide, but the activity stream for that […]

  • Profile picture

    kizinko started the forum topic BuddyPress.org – can't edit or delete posts in the forum in the group How-To and Troubleshooting 1 year, 9 months ago

    Hey, is anyone else having this problem? I am unable to edit or delete posts on buddypress.org. I have been able to in the past, so I am guessing it is an issue created by the latest wordpress update.

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 9 months ago

    Hello modemlooper,

    Thanks for your response. I still can’t quite get it to work though. I am not very good with PHP yet, so I assume it is my terrible coding. Here is how I tried to incorporate it into /buddypress/bp-themes/bp-default/activity/activity-loop.php: […]

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 9 months ago

    while ( bp_activities() ) : bp_the_activity();
    if(bp_get_group_name() != ‘Failed Sundays’ )
    include( locate_template( array( ‘activity/entry.php’ ), false ) )
    endif;
    endwhile;

    What am I doing wrong?

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 9 months ago

    Hello modemlooper,

    Thanks for your response. I still can’t quite get it to work though. I am not very good with PHP yet, so I assume it is my terrible coding. Here is how I tried to incorporate it into /buddypress/bp-themes/bp-default/activity/activity-loop.php:

    […]

  • Profile picture

    kizinko replied to the forum topic BP style help needed please in the group How-To and Troubleshooting 1 year, 9 months ago

    First thing, you need a child theme if you haven’t already created one. Doing a quick search online should find directions on how to do it if you need.

    Second, In that child theme you need a CSS file to make changes to your […]

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 9 months ago

    *bump again* :-/

  • Profile picture

    kizinko replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 9 months ago

    *bump*

  • Profile picture

    kizinko replied to the forum topic How to edit a post in buddypress in the group How-To and Troubleshooting 1 year, 9 months ago

    Are you referring to a post in the activity feed or to a WordPress post being displayed in BuddyPress?

    Do you want to edit the content or the style of the post?

  • Profile picture

    kizinko replied to the forum topic Changing text colors in bp-default theme. in the group How-To and Troubleshooting 1 year, 9 months ago

    Yes, what wilfil said will change the link color to a darker blue, but if you want more control over how dark it will be you can replace the word “blue” in his code “a {color:blue !important;}” to a hexadecimal value.

    After […]

  • Profile picture

    kizinko started the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 1 year, 9 months ago

    Hello, I need to know if it is possible to hide or remove activity in the main activity stream from certain groups while keeping them set as public groups? If you want an in-context look, my site is http://sunday-fundays.com. […]

  • Profile picture

    kizinko posted on the forum topic WP dashboard broke when I selected the option to enable bbPress forums in the group How-To and Troubleshooting 1 year, 10 months ago

    I was able to find the file causing the issue after renaming the /buddypress/ folder to /buddypress-abc/.

    After gaining access to the admin board I started deleting files one at a time and found that if I delete bp-forums.php […]

  • Profile picture

    kizinko posted on the forum topic WP dashboard broke when I selected the option to enable bbPress forums in the group How-To and Troubleshooting 1 year, 10 months ago

    *bump*

    Someone please help! I am completely without a wordpress admin dashboard and can’t continue working on the project until it is back up.

  • Load More
Profile picture of kizinko
  • Activity
    • Personal
    • Mentions
    • Favorites
  • Profile
    • View
  • Sites 0
    • My Sites
  • Forums
    • Topics Started
    • Replies Created
    • Favorites

See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS

Follow BuddyPress on Twitter • GPL • Contact Us • Terms of Service

Skip to toolbar
    • WordPress.org
      • About WordPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • bbPress.org
      • About bbPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • BuddyPress.org
      • About BuddyPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
  • BuddyPress.org
    • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Lost Password
    • Log In
Log Out