-
Boone Gorges posted on the forum topic change CSS according hashtags in activity content in the group How-To and Troubleshooting: 14 years, 1 month ago
Cool idea. This can be done using the bp_get_activity_css_class filter hook. For instance,
function boone_add_activity_class( $class ) { global $activities_template; if ( strpos( $activities_template->activity->content, '#red' ) !== false ) $class .= ' red'; return $class; } add_filter( 'bp_get_activity_css_class', 'boone_add_activity_class' );
If…[Read more] -
Boone Gorges posted on the forum topic Is it possible to do this? in the group How-To and Troubleshooting: 14 years, 1 month ago
Marc R – What you want to do with groups would be pretty hard to do, given the way that public/private groups currently work in BP. There *might* be a way to do it using only hooks and filters (which would essentially switch the status back and forth from public to private depending on what […]
-
Boone Gorges posted on the forum topic functions.php vs. bp-custom.php in the group How-To and Troubleshooting: 14 years, 1 month ago
For purposes of a single installation of BuddyPress, the main difference is when the files are loaded. Actions and filters in bp-custom.php are among the very first things loaded when BP is loaded. functions.php isn’t loaded until the theme is loaded, after all of the BP components. So if you need something to be loaded […]
-
Boone Gorges posted on the forum topic Events Manager for BuddyPress in the group Creating & Extending: 14 years, 1 month ago
Group integration is a biggie. Events and calendars should be able to be group- as well as member-specific.
Activity and bp-notification integration would be nice too.
-
Boone Gorges posted on the forum topic Looking for the best combo for WP + BP + forum in the group Creating & Extending: 14 years, 1 month ago
I don’t know of anyone who has integrated punBB and BP. Here’s a plugin to share logins between the two systems: http://www.rkblog.rk.edu.pl/w/p/punbb-and-wordpress-integration-plugin/. The group-level management stuff would probably have to be custom coded. I’m not aware of anyone who has integrated a different forum software into BP that will…[Read more]
-
Boone Gorges posted on the forum topic Line breaks in profile textarea field in the group How-To and Troubleshooting: 14 years, 1 month ago
BuddyPress applies the wpautop filter when it displays xprofile field data. So what is stored in the db as
/n
or/r
should be converted to...
on the way out. If you’re not seeing line breaks at all, it could be one of two things: 1) your stylesheet is displaying paragraphs as inline elements, […] -
Boone Gorges posted on the forum topic Grab a Codex shovel in the group buddypress.org Ninjas: 14 years, 1 month ago
Sounds right to me, Bowe. Especially the beer part. Speaking of which, I think I’m done working for the day….
-
Boone Gorges posted on the forum topic How to I completely remove buddypress from my database? in the group How-To and Troubleshooting: 14 years, 1 month ago
Drop all the tables that start with wp_bp_. There are also a few options in the wp_options table (or wp_sitemeta on a network install) that start with bp_ but they probably won’t affect bbPress installation.
-
Boone Gorges posted on the forum topic Grab a Codex shovel in the group buddypress.org Ninjas: 14 years, 1 month ago
Oh, and @LPH2005 – Can you contact me off the boards with your wp.org email address and username so I can add you as an Editor to the Codex? It should happen automatically but for some reason you’re not listed as a member. http://twitter.com/boonebgorges My Twitter handle at gmail
-
Boone Gorges posted on the forum topic Grab a Codex shovel in the group buddypress.org Ninjas: 14 years, 1 month ago
Hiya gang – Paul’s suggestion about bpdevel was a good one, so I put up a post just now: http://bpdevel.wordpress.com/2010/10/06/help-improve-the-buddypress-codex/
-
Boone Gorges posted on the forum topic Disable Activation Email Breaks Invite Anyone in the group Invite Anyone: 14 years, 1 month ago
I’ll try to take a look at it by the end of the week.
-
Boone Gorges started the forum topic Grab a Codex shovel in the group buddypress.org Ninjas: 14 years, 1 month ago
As you may or may not be aware, the Codex has recently been undergoing some major improvements. If you haven’t seen it yet, please check it out: http://codex.buddypress.org. Many thanks to mercime for leading the redesign/reorganization charge. Kudos to @mercime for leading the charge. Now that the basic structure is in place, the BuddyPress…[Read more]
-
Boone Gorges posted on the forum topic Privacy Options / Anti Bot in the group BP Lotsa Feeds: 14 years, 2 months ago
Thanks for the tip. Right now the feeds can be shut off one at a time, and if an admin didn’t want any of the feeds, they could just uninstall the plugin :). Good caching would also help, but that’s probably a BP (or even WP) core issue with the way feeds are handled. It’s […]
-
Boone Gorges posted on the forum topic Group activity emails/notifications not being generated/sent in the group BuddyPress Group Email Subscription: 14 years, 2 months ago
Thanks for the feedback. Are normal BuddyPress emails being sent? For instance, notifications of private messages, or that someone has mentioned you in an update?
-
Boone Gorges reviewed the plugin BP Lotsa Feeds: 14 years, 2 months ago
This plugin is the shizz
-
Boone Gorges posted on the forum topic New plugin: BP Lotsa Feeds in the group Third Party Components & Plugins: 14 years, 2 months ago
@paulhastings0 Thanks for the reminder about the bp.org group forum. I’ve activated it now. As for whether to activate it on BP.org – no, this isn’t the one that I was talking about, though it would be very nice to have better (any) feed support here on this site. I need to do some load testing […]
-
Boone Gorges started the forum topic New plugin: BP Lotsa Feeds in the group Third Party Components & Plugins: 14 years, 2 months ago
I wrote a plugin that allows you to switch on RSS feeds for all kinds of stuff in BP (individual forum topics, member sitewide blog comments, etc). It’s called BP Lotsa Feeds and you can get it here: https://wordpress.org/extend/plugins/bp-lotsa-feeds/
Feedback welcome!
-
Boone Gorges posted on the forum topic Group activity emails/notifications not being generated/sent in the group BuddyPress Group Email Subscription: 14 years, 2 months ago
Are all of you having exactly the same problem – no emails whatsoever? So it’s not just a problem with digests, but also the emails you should get when signed up for All Mail or for New Topics? Also: Is the problem only with group forum posts, or are you also having problems with other […]
-
Boone Gorges posted on the forum topic Any way to make a ’Height’ profile field in Feet and Inches? in the group Creating & Extending: 14 years, 2 months ago
Actually, you wouldn’t have to change the way data is stored – you could still store height in inches only. But you would need to customize the template markup, so that when the Height field is displayed, the value from the database would have to be transformed into feet/inches with a little bit of math. […]
-
Boone Gorges posted on the forum topic Moderators can't to cancel comment. in the group How-To and Troubleshooting: 14 years, 2 months ago
Your question isn’t really clear. Are you looking for a way to delete activity items/updates? Or are you talking about forum topics/posts?
- Load More
@boonebgorges
Active 1 year, 4 months ago