Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • Register
  • Lost Password
  • Log In

@andrewteg active 3 weeks, 4 days ago
  • Personal
  • Mentions
  • Favorites
  • Profile picture

    Andrew Tegenkamp posted an update in the group Buddypress Humanity 1 year, 7 months ago

    A quick fix for multisite if Buddypress is not installed on the main site @ http://pastebin.com/7HGPfGnw

  • Profile picture

    Andrew Tegenkamp joined the group Buddypress Humanity 1 year, 7 months ago

  • Profile picture

    Andrew Tegenkamp replied to the forum topic Changing Group tab display defaults in the group How-To and Troubleshooting 1 year, 7 months ago

    Also use this line in place of the 2 lines with 98 and activity log if you want to just remove the link from the bar (do know the /home/ URL like http://willowbilliards.com/groups/14-1-straight-pool-league/home/ […]

  • Profile picture

    Andrew Tegenkamp replied to the forum topic Changing Group tab display defaults in the group How-To and Troubleshooting 1 year, 7 months ago

    Ok, looks like 1.5 needs this code… should be working on your site too! You can change the 98 to any number really. It stars out at 10, with forum = 40 and members = 60, so just put the number to whatever you […]

  • Profile picture

    Andrew Tegenkamp replied to the forum topic Changing Group tab display defaults in the group How-To and Troubleshooting 1 year, 7 months ago

    That’s odd ~ are you using 1.5 or on the 1.2 branch? Guess I shoulda asked that before ;)

    Regarding the forums, you may need to disable BuddyPress since the forum plugin bbPress uses the same code as […]

  • Profile picture

    Andrew Tegenkamp replied to the forum topic Changing Group tab display defaults in the group How-To and Troubleshooting 1 year, 8 months ago

    ok, let’s give this code a shot. I just tried it on a local dev and it worked well.

    If that does not work for you can you kinda enable debug and comment out the /* and the //echo lines and see if you get […]

  • Profile picture

    Andrew Tegenkamp replied to the forum topic Changing Group tab display defaults in the group How-To and Troubleshooting 1 year, 8 months ago

    I’m getting an error on your site because you have my_bp_groups_forum_first_tab delcared in both bp-custom.php and functions.php. Go ahead and remove it from one (probably functions.php for now) because you will […]

  • Profile picture

    Andrew Tegenkamp replied to the forum topic Changing Group tab display defaults in the group How-To and Troubleshooting 1 year, 8 months ago

    Ok, let’s take this in two parts.

    1) If the actual function code is appearing above your header, then make sure you have it inside PHP tags

    2) If you are still getting the warning about “Cannot modify […]

  • Profile picture

    Andrew Tegenkamp replied to the forum topic Changing Group tab display defaults in the group How-To and Troubleshooting 1 year, 8 months ago

    @jad117, I hope this helps, and please let me know with another mention if not.

    Basically the first step is to create a blank file called bp-custom.php and save it as /wp-content/plugins/bp-custom.php. You can […]

  • Profile picture

    Andrew Tegenkamp posted a new activity comment: 2 years, 2 months ago

    FYI, I found a fix and updated the thread @ http://buddypress.org/community/groups/buddypress-followers/forum/topic/following-menus/

    View Conversation
  • Profile picture

    Andrew Tegenkamp posted on the forum topic Following menus in the group BuddyPress Followers: 2 years, 2 months ago

    I’ve updated this change set to include a fix in the classes file regarding the count. For me, the original plugin was having the same issue for me so I think it is a problem where there is getting to be some duplication in the database. I’m not sure if my changes or the original [...]

  • Profile picture

    Andrew Tegenkamp posted on the forum topic Sort Groups Alphabetically by default (BP 1.2) in the group How-To and Troubleshooting: 2 years, 3 months ago

    I forgot to check for just members/groups so here’s the corrected version…
    function sort_alpha_by_default( $qs ) {
    global $bp;
    if (!$qs && ( $bp->current_component == BP_GROUPS_SLUG || $bp->current_component == BP_MEMBERS_SLUG ) )
    $qs = 'type=alphabetical&action=alphabetical';
    return $qs;
    }
    add_filter( 'bp_dtheme_ajax_querystring',…
    [Read more]

  • Profile picture

    Andrew Tegenkamp posted on the forum topic Sort Groups Alphabetically by default (BP 1.2) in the group How-To and Troubleshooting: 2 years, 3 months ago

    Old thread but good google result… this mod seems to work best for me

    1) add selected to your theme/child theme and also put Alphabetical at the top.
    2) add this function into your theme’s functions.phpfunction sort_alpha_by_default( $qs ) {
    return ($qs) ? $qs : 'type=alphabetical&action=alphabetical';
    }
    add_filter(…
    [Read more]

  • Profile picture

    Andrew Tegenkamp posted on the forum topic Following menus in the group BuddyPress Followers: 2 years, 3 months ago

    Sure Harald, you can download the 4 files I changed at http://dl.dropbox.com/u/244479/wp/buddypress_followers_nav_changes.zip

    I’m not 100% sure the counts are correct but it should use the same code so I think they’re ok but still testing that out on our church’s site.

    Hope it helps,
    Andrew

  • Profile picture

    Andrew Tegenkamp posted on the forum topic Following menus in the group BuddyPress Followers: 2 years, 3 months ago

    @floris and others, I’ve done this in our setup while fixing another bug I found that was bothering me. If you’re still interested, let me know and I’ll post the changed files from the plugin. Hoping this is a core component in 1.3…

  • Profile picture

    Andrew Tegenkamp posted on the forum topic How to display follow button only on specific profiles? in the group BuddyPress Followers: 2 years, 3 months ago

    The issue is it’s a different function for every “Follow” button, so you’d have to do it in quite a few places. But here’s one idea if you’re interested… check out bp-follow-hooks.php and look for function bp_follow_add_profile_follow_button this is the function that shows that button and you can see it returns false if the user [...]

  • Profile picture

    Andrew Tegenkamp posted on the forum topic BUG: Follow count doesn't update when a member is deleted from the site in the group BuddyPress Followers: 2 years, 3 months ago

    @GooseNL, should just be able to add that into bp-custom.php or your theme’s functions.php file. It would only get called based on the actions which is when a user is deleted or made a spam user.

  • Profile picture

    Andrew Tegenkamp joined the group BuddyPress Group Email Subscription 2 years, 3 months ago

  • Profile picture

    andrewteg posted on the forum topic Buddy Stream not importing in the group BuddyStream: 2 years, 3 months ago

    I want to say I went through import.php myself and just posted a support ticket with the same answer that @mrsangeld has here and at the pastebin links. I should learn to check here first but wanted to post to confirm it works for me as well and does not appear to have made the cut [...]

  • Profile picture

    andrewteg joined the group BuddyStream 2 years, 3 months ago

  • Load More
Profile picture of Andrew Tegenkamp
  • 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