-
Boone Gorges posted on the forum topic How to enable a WYSIWYG editor for activity stream posts in the group How-To and Troubleshooting: 15 years, 1 month ago
Yeah, BP TinyMCE won’t take much to make it work. I think it’s just a matter of making sure that the CSS selectors in the JS are correct (they changed early in the life of bp-default). One of these days I will get around to updating it. Sorry it’s been gathering dust for so long.
-
Boone Gorges posted on the forum topic Cron Tasks with BuddyPress in the group How-To and Troubleshooting: 15 years, 2 months ago
Here’s a pretty good guide that covers what Rich has shown here, plus how to designate custom intervals: http://themocracy.com/2010/02/wp-cron-automating-scheduling/
-
Boone Gorges posted on the forum topic The order of the plugins in the group Third Party Components & Plugins: 15 years, 2 months ago
The page you linked to lists plugins in the order in which they were last updated. There’s no way I know of to see which ones were most recently created.
-
Boone Gorges posted on the forum topic Different Ways of Inviting in the group Invite Anyone: 15 years, 2 months ago
Hi everyone. Thanks for the bump about this. To be honest, I haven’t even begun to look at this. The BP end of things, as John says, is not rocket science; nearly all the necessary stuff is already in IA to make the BP part of this work. Finding the right APIs (Plaxo, OpenInviter, or […]
-
Boone Gorges posted on the forum topic Username as subdomain in the group How-To and Troubleshooting: 15 years, 2 months ago
@hnla You should know by now that I have Super Powers.
-
Boone Gorges posted on the forum topic Modifying / Customising the registration process in the group How-To and Troubleshooting: 15 years, 2 months ago
It’s not straightforward, but it is possible. You’ll have to replace bp_core_screen_signup() (where the value of $bp->signup->step is set) with your own custom function. You’ll need to do the following:
remove_action( 'wp', 'bp_core_screen_signup', 3 );to remove BP’s registration function, followed byremove_action( 'wp',…[Read more] -
Boone Gorges posted on the forum topic Username as subdomain in the group How-To and Troubleshooting: 15 years, 2 months ago
Do you mean that you want username.websitename.com to point to the user profile? That’s easy enough if all you want is a redirect from username.websitename.com to websitename.com/members/username – you can do this with a straightforward RewriteRule in .htaccess. If you want to keep username.websitename.com for the entire session (so links like…[Read more]
-
Boone Gorges posted on the forum topic Custom Groups or activating different plugins in different groups? in the group How-To and Troubleshooting: 15 years, 2 months ago
(Sorry in advance that this answer is full of code. There is currently no easy way to do what you want to do, though with some coding it can be done pretty easily.) Plugins generally create new group tabs through the BP Group Extension API: https://codex.buddypress.org/developer-docs/group-extension-api/ So a relatively quick way to keep certain tabs […]
-
Boone Gorges posted on the forum topic How to Keep Blog Tracking but Hide Blogs(0) tab for non-blogging Members in the group How-To and Troubleshooting: 15 years, 2 months ago
At the beginning of your bp-custom.php file, make sure you have
-
Boone Gorges posted on the forum topic How to get 'edit profile', 'change avatar', 'notification settings' etc on the same page? in the group How-To and Troubleshooting: 15 years, 2 months ago
The markup for the edit profile page is in the theme directory, members/single/profile/edit.php. The change avatar page is right next to it, members/single/profile/change-avatar.php. The markup for the settings screens is created in bp_core_screen_general_settings(), located in buddypress/bp-core/bp-core-settings.php. It’s possible in theory to…[Read more]
-
Boone Gorges posted on the forum topic What is wrong with my forums in buddypress in the group How-To and Troubleshooting: 15 years, 2 months ago
We’ll need more information in order to help.https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/
Also please do not bump your posts more than once a day. This board is not sufficiently well trafficked to expect a response within a few hours.
-
Boone Gorges posted on the forum topic Filter of Function / Theme or Plugin in the group How-To and Troubleshooting: 15 years, 2 months ago
Cool. Glad it works!
-
Boone Gorges posted on the forum topic Update User Activitys Stream by RSS Feed in the group How-To and Troubleshooting: 15 years, 2 months ago
You’ll have to experiment in order to get the other parameters right. Try experimenting on a test installation to see how changing the different values (especially feed_action) changes the text. And keep in mind that ‘user_id’ => ‘johnb’ will not work. You have to use a numeric id for the user. Also, make sure you […]
-
Boone Gorges posted on the forum topic Mediawiki single sign on in the group How-To and Troubleshooting: 15 years, 2 months ago
Mark – you’ll need to follow the instructions in that post clearly. Keep in mind that the plugin is not for WordPress; the modifications are mostly to Mediawiki. Your “valid headers” issue probably arises from the fact that you’re loading the plugins into wp-content/plugins instead of the extensions directory of your MW install.
-
Boone Gorges posted on the forum topic Filter of Function / Theme or Plugin in the group How-To and Troubleshooting: 15 years, 2 months ago
I’m not sure what you mean by reformatting “to a stacked output”, but you can definitely modify the output of bp_activity_action() without modifying the core BP files. In your theme’s functions.php, try a function like the following: `function holt_modify_action( $action, $activity ) { // $action is the unmodified action text produced by BP. //…[Read more]
-
Boone Gorges posted on the forum topic Is BP the right plattform for my project? in the group Creating & Extending: 15 years, 2 months ago
Sounds to me like most of your requirements could be met with WP Multisite plus a few selected plugins and themes. – P2 allows for front-end posting – https://wordpress.org/extend/plugins/more-privacy-options/ expands WP’s default privacy options to allow blog admins to hide their blogs from everyone but themselves – Forums could be accomplished…[Read more]
-
Boone Gorges posted on the forum topic BP Developer Chat Today in the group Miscellaneous: 15 years, 2 months ago
Thanks for the reminder!
-
Boone Gorges posted on the forum topic Update User Activitys Stream by RSS Feed in the group How-To and Troubleshooting: 15 years, 2 months ago
I think you should just be able to add a user_id item to the array:
'user_id' => $user_id,where $user_id is johnb’s unique user id.
-
Boone Gorges posted on the forum topic How to Keep Blog Tracking but Hide Blogs(0) tab for non-blogging Members in the group How-To and Troubleshooting: 15 years, 2 months ago
And make sure that bp-custom.php goes in your wp-content/plugins directory, NOT in the theme folder.
-
Boone Gorges posted on the forum topic How to Remove and Add Items in "bp_get_displayed_user_nav" in the group How-To and Troubleshooting: 15 years, 2 months ago
Thanks for the example code, @mariochampion. Action order can be a bit mystifying. I assume that your action is working because it’s getting loaded after BP is, otherwise I don’t think it would work. In any case, it’s very helpful to have more data points.
- Load More
@boonebgorges
Active 2 years, 3 months ago