#2679 closed defect (bug) (fixed)
Duplicate Add Friends Members Directory
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.5 |
| Component: | Template Pack | Version: | |
| Severity: | normal | Keywords: | directory members close |
| Cc: |
Description
Installed the latest version and now seeing double “add friends” to each username in the Members Directory
[wordpress3.01+buddypress1.6]
Change History (5)
comment:2
johnjamesjacoby — 3 years ago
- Component changed from Core to Theme
- Keywords friends duplicate removed
- Milestone changed from 1.2.6 to Future Release
- Resolution invalid deleted
- Status changed from closed to reopened
This problem exists in the Template Pack also and should be addressed there too.
comment:3
johnjamesjacoby — 3 years ago
- Component changed from Theme to Template Pack
- Keywords close added
- Resolution set to fixed
- Severity set to normal
- Status changed from reopened to closed
This issue had been fixed in BP Template Pack since version 1.1.
Note: See
TracTickets for help on using
tickets.

This is likely because you are using custom members-loop.php theme file in a child/custom theme. As part of [3260] a change went into the code that moved the add friends button to the bp_directory_members_actions hook. The code changed from:
<div class="action"> <?php bp_member_add_friend_button() ?> <?php do_action( 'bp_directory_members_actions' ) ?> </div>to
<div class="action"> <?php do_action( 'bp_directory_members_actions' ); ?> </div>Make the necessary changes to your members-loop.php file, and you'll find things return to normal.