-
David Cavins replied to the topic Fatal Error When Activating Pending Account in the forum How-to & Troubleshooting 3 years, 8 months ago
Thank you for reporting this issue. The fix is in this commit: https://buddypress.trac.wordpress.org/changeset/13320
We’ll release a maintenance release to address it, but if you need it fixed now, add the conditional in the commit is the solution.
This issue only affects admin users using the Pending Memberships screen, so the problem shouldn’t…[Read more]
-
Peter Hardy-vanDoorn replied to the topic How to show location field in members-loop.php in the forum Installing BuddyPress 7 years, 8 months ago
The documentation for the Members Loop is here: https://codex.buddypress.org/developer/loops-reference/the-members-loop
You will see that there are a number of hooks which you can add your additions into, particularly at line 44:
do_action( 'bp_directory_members_item' );and at line 59:do_action( 'bp_directory_members_actions' ); -
shanebp replied to the topic Font Awesome breaks ajax on delete link in the forum How-to & Troubleshooting 11 years, 8 months ago
It’s the jquery in global.js
The ‘target’ becomes the icon rather than the a tag.
Soif ( target.hasClass('delete-activity')fails.Changing to this gets the right target:
if ( target.hasClass('icon-trash') {And then you need to change:
var link_href = target.attr('href');to:
var link_href = target.closest("a").attr("href");otherwise…[Read more]
-
islandcastaway started the forum topic BuddyPress not showing on single sites plugin page in the group How-To and Troubleshooting 14 years, 7 months ago
Hello, I was gonna try to play with the new BuddyPress on a per site install of multisite but the plugin is not showing in the plugins list of individual sites,it only shows up on the network admins plugins […]
-
charlcfc started the forum topic bp_has_members – bp_ajax_querystring in the group How-To and Troubleshooting: 15 years, 1 month ago
Hi All Got a page called members-functions.php and within that page running a function which does:
if ( bp_has_members( 'type=alphabetical&include='.$user_id) ) : while ( bp_members() ) : bp_the_member(); ?>and some other jaz. This returns all the members, however a person cannot filter between the members such as: Last Active, Newest Registered.…[Read more] -
enlightenmental1 started the topic codex help needed: documentation for dummies in the forum How-to & Troubleshooting 16 years, 11 months ago
<?php echo $user->avatar ?>
where does one find more of these?
specifically where/how to add elements to the users blog
I have the blog admin information dispalying on their sidebar, but cannot get the other codex samples to work
how do i define a dynamic user_id ?
if ( bp_has_blogs() ) :<div class="pag-count" id="blog-count">…[Read more]
@paulataylor
Active 3 years, 7 months ago