#2679 closed defect (bug) (fixed)
Duplicate Add Friends Members Directory
| Reported by: | intimez | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.5 |
| Component: | Appearance - 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)
#2
@
16 years ago
- Component Core → Theme
- Keywords friends duplicate removed
- Milestone 1.2.6 → Future Release
- Resolution invalid
- Status closed → reopened
This problem exists in the Template Pack also and should be addressed there too.
#4
@
14 years ago
- Keywords close added
- Resolution → fixed
- Severity → normal
- Status reopened → closed
This issue had been fixed in BP Template Pack since version 1.1.
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
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.