-
Boone Gorges replied to the topic Rebooting Activity Stream? in the forum Installing BuddyPress 6 years, 12 months ago
Yes, the
alphabetical
sort doesn’t require last_activity, which is why it probably caused it to work. In any case, I’m glad you’ve got it sorted out! -
Boone Gorges replied to the topic How do I make the comment button read only in the activity stream? in the forum How-to & Troubleshooting 6 years, 12 months ago
Glad you got it working!
You can pay us back by coming back occasionally and answering a support question or two 🙂
-
Boone Gorges replied to the topic Member search into group does not work before filter it in the forum How-to & Troubleshooting 6 years, 12 months ago
@scribit – Thanks for following up. We are getting closer 🙂
Do you have any idea why the
home
element has theselected
class? Does this mean that, when you view the group nav tabs, both Home and Selected have the “current” styling? BuddyPress doesn’t do this out of the box, so I wonder if perhaps there’s something in your theme that’s causing it…[Read more] -
Boone Gorges replied to the topic Special characters output in profile fields in the forum How-to & Troubleshooting 6 years, 12 months ago
Hi @Sander – Thanks for reporting this. It looks like a legitimate bug. I’ve opened a ticket to track it: https://buddypress.trac.wordpress.org/ticket/7631
While we try to figure out a way to make this work better, you can work around the issue by disabling autolink for the field in question. Dashboard > Users > Profile Fields > Edit, and look…[Read more]
-
Boone Gorges replied to the topic Searchable Fields with Special Characters in the forum How-to & Troubleshooting 6 years, 12 months ago
Thanks for the report, @onedevstudios. This sounds like it’s probably a bug. Could you please open a ticket at https://buddypress.trac.wordpress.org with detailed instructions to reproduce? Thanks!
-
Boone Gorges replied to the topic How do I make the comment button read only in the activity stream? in the forum How-to & Troubleshooting 6 years, 12 months ago
> Should I give you access to my website? Or do you have a better understanding of the problem now?
Hi Naomi – I and other members of the site post here as volunteers, so please understand that there may not always be immediate feedback to your posts.
> I uploaded an image to the link you provided, the file is called “Comment_Overlap”
Can you…[Read more]
-
Boone Gorges replied to the topic Member search into group does not work before filter it in the forum How-to & Troubleshooting 6 years, 12 months ago
I’m unable to test with the proprietary Magnum theme, but with the free version of Optimizer, I’m unable to reproduce the problem. Group member searches are working as expected: https://postimg.org/image/axag5nsjr/
Here’s the relevant part of BP’s JavaScript:…[Read more]
-
Boone Gorges replied to the topic How do I make the comment button read only in the activity stream? in the forum How-to & Troubleshooting 6 years, 12 months ago
Hi Naomi – Thanks for the additional details.
I’m afraid I still don’t understand what you mean by “the comment input box” and “the reply area”. Here’s what the activity commenting area looks like on Twenty Sixteen: https://postimg.org/image/yzra0j1h3/ I assume that “the comment input box” is the field at the bottom, just above the ‘post’ and…[Read more]
-
Boone Gorges replied to the topic [Fixed] I can't create groups page keeps reloading in the forum Installing BuddyPress 6 years, 12 months ago
A few things to check:
1. After submitting the first page of the group creation process, is the group actually created in the database? Check Dashboard > Groups, or the
wp_bp_groups
database table if you know how.2. Check your browser cookies to see if the
bp_new_group_id
andbp_completed_create_steps
cookies are set. If so, please share the…[Read more] -
Boone Gorges replied to the topic Member search into group does not work before filter it in the forum How-to & Troubleshooting 6 years, 12 months ago
What theme are you using? I wonder if the JS that you’re using is out of sync with the search template.
-
Boone Gorges replied to the topic Armember badges in the forum Third Party Plugins 6 years, 12 months ago
I don’t have access to the proprietary ARMember plugin, so I can’t say anything about that.
Here’s one way to show arbitrary content in a BP user’s profile header:
add_action( 'bp_before_member_header_meta', function() {
$user_id = bp_displayed_user_id();
echo 'Here is the badge for user ' . $user_id;
} );
You’ll need to use the
$user_id
…[Read more] -
Boone Gorges replied to the topic Issue with Buddypress Group RSS feeds in the forum How-to & Troubleshooting 6 years, 12 months ago
Glad you tracked down the error – leading spaces are a huge headache in XML/RSS documents.
-
Boone Gorges replied to the topic Can’t upload avatar image under 451px in the forum How-to & Troubleshooting 6 years, 12 months ago
Whoa, this is a pretty obscure problem. Thank you very much for following up with your solution.
-
Boone Gorges replied to the topic How NOT to redirect users after login. in the forum How-to & Troubleshooting 6 years, 12 months ago
It looks, at a glance, like the LH Private BuddyPress plugin ought to be doing what you’re asking for. https://plugins.trac.wordpress.org/browser/lh-private-buddypress/trunk/lh-private-buddypress.php#L101
If it’s not working, it’s either because of an error in the plugin logic, or because something on your server or WP setup is interfering with…[Read more]
-
Boone Gorges replied to the topic Groups not displaying properly in the forum How-to & Troubleshooting 6 years, 12 months ago
Looking more closely at your styles, the problem might be the width of your
#item-meta
. Remove themargin-top
declaration you entered before, and try this instead:
#buddypress div#item-header div#item-meta {
width: 200px;
}
Your next step is to start getting familiar with CSS :-D…[Read more]
-
Boone Gorges replied to the topic How do I make the comment button read only in the activity stream? in the forum How-to & Troubleshooting 6 years, 12 months ago
What theme are you using? It’s possible that this problem is specific to the theme. Try on a default WordPress theme like Twenty Sixteen to be sure.
Can you share a screenshot of the “comment box” and the “reply box”? It’s unclear from your questions whether you’re talking about textareas or about buttons. Also, BP doesn’t have separate Comment…[Read more]
-
Boone Gorges replied to the topic Email confirmation after changing admin email in the forum How-to & Troubleshooting 6 years, 12 months ago
Hi @aubreyw – The email should show up immediately. If it’s not, the places you should check are:
1. Is any email being sent from your server? For example, do BP emails (like private message notifications) show up? How about other WP notifications, like a password reset?
2. Check your spam folders (which it sounds like you’ve already done)
It’s…[Read more]
-
Boone Gorges replied to the topic Cover Photo Issues in the forum How-to & Troubleshooting 6 years, 12 months ago
Hm. In this case, there must be a disconnect between your theme’s setting
$content_width
and the BP features that use this value. Start your debugging atbp_register_theme_compat_default_features()
in bp-core/bp-core-theme-compatibility.php. -
Boone Gorges replied to the topic Rebooting Activity Stream? in the forum Installing BuddyPress 6 years, 12 months ago
@mbfit If by “unsearchable” you mean that they don’t show up in the directory anymore, then the problem is probably that the plugin deleted the ‘last_activity’ activity items for each user. As such, BP doesn’t show them as active users.
If you retained a backup before you ran the delete process, then you should restore the last_activity items…[Read more]
-
Boone Gorges replied to the topic Creating Forum for Groups in the forum Miscellaneous 6 years, 12 months ago
Can you give an example of what the “main forums page” URL looks like? Is it example.com/forums? (BP itself is not responsible for creating a page like this, so I want to have a better idea of where I can send you for help.)
- Load More
@boonebgorges
Active 1 year, 3 months ago