-
Boone Gorges started the forum topic Invite Anyone 0.8 testers wanted in the group Invite Anyone: 13 years, 9 months ago
I’ve got a new version of Invite Anyone about to come out, and I am looking for some testers. Do not test the development version of the plugin on a live installation. It alters data! Test sites only! There are two big changes in this version that need testing: 1) Data has been converted from a […]
-
Boone Gorges posted on the forum topic Translation in the group Invite Anyone: 13 years, 9 months ago
nuttmeg – I don’t think that that string is created by Invite Anyone. Are you sure you’re posting in the right place?
-
Boone Gorges posted on the forum topic Needing to Find Out Functions Associated With Certain Actions in the group How-To and Troubleshooting: 13 years, 9 months ago
Hooray for understanding!! 🙂
-
Boone Gorges posted on the forum topic Needing to Find Out Functions Associated With Certain Actions in the group How-To and Troubleshooting: 13 years, 9 months ago
Instances of do_action() don’t, in themselves, do anything. They are signposts (‘hooks’, in WordPress terminology) that allow other plugins to add functionality. It is thanks to such idle hooks in WordPress that BuddyPress is able to function. See https://codex.wordpress.org/Plugin_API for more info about how the system works. Grep will tell you…[Read more]
-
Boone Gorges posted on the forum topic Needing to Find Out Functions Associated With Certain Actions in the group How-To and Troubleshooting: 13 years, 9 months ago
Use grep. That’s what I do. From the UNIX or Mac Terminal command line, cd to your buddypress installation directory. Then:
grep -nR 'bp_after_signup_profile_fields' ./
That’ll tell you all the locations of all the instances of that text. In the case of this particular do_action, I am pretty sure it is just there for the […] -
Boone Gorges posted on the forum topic Plugin Idea: BP Group Pages – please give feedback and support in the group Creating & Extending: 13 years, 9 months ago
The plugin is not done yet.
-
Boone Gorges posted on the forum topic Forum Notification Via Email? in the group How-To and Troubleshooting: 13 years, 9 months ago
BP core does not do any email notifications related to forum posts. So there is nothing for the Group Email Subscription plugin to interfere with.
-
Boone Gorges posted on the forum topic Plugin Idea: BP Group Pages – please give feedback and support in the group Creating & Extending: 13 years, 9 months ago
Donations always accepted at http://teleogistic.net/donate/ 🙂
-
Boone Gorges posted on the forum topic Any way to have Buddypress not a Network wide plugin? in the group How-To and Troubleshooting: 13 years, 9 months ago
The one thing that is truly network-wide about BuddyPress is that posts from every blog on the network will get tracked in the activity stream by default. If you turn off blog tracking (Dashboard > BuddyPress > Component Setup) then it’ll be functionally equivalent to having BP installed on a single blog. If you want […]
-
Boone Gorges posted on the forum topic Plugin Idea: BP Group Pages – please give feedback and support in the group Creating & Extending: 13 years, 9 months ago
Permissions are simple now: every member of a group can do everything to a doc in that group. It’ll be finer-grained when I get around to it.
You’re seeing the same docs in every group because you are using 3.0.2. I use the tax_query stuff in 3.1 to display docs on a per-group basis.
-
Boone Gorges posted on the forum topic Plugin Idea: BP Group Pages – please give feedback and support in the group Creating & Extending: 13 years, 9 months ago
I should note that the plugin definitely *does* require WP 3.1. No way to make it compatible with 3.0.x, because I use some of the new tax_query stuff.
-
Boone Gorges posted on the forum topic Plugin Idea: BP Group Pages – please give feedback and support in the group Creating & Extending: 13 years, 9 months ago
Ha ha, BuddyPress doesn’t like my Cyrillic. I said: thanks, I’ll let you know when it’s finished (po russkiy konyeshno)
-
Boone Gorges posted on the forum topic Plugin Idea: BP Group Pages – please give feedback and support in the group Creating & Extending: 13 years, 9 months ago
Just pushed up a fix for that bp_is_current_component bit. I’ve got the plugin working on a local version of 1.2.7. Looking a bit ugly at the moment, but working.
@jokermill Большое спасибо – я тебе скажу когда закончено 🙂
-
Boone Gorges posted on the forum topic Buddypress, how to install bbpress (doesn't work) in the group Requests & Feedback: 13 years, 9 months ago
😉
-
Boone Gorges posted on the forum topic Plugin Idea: BP Group Pages – please give feedback and support in the group Creating & Extending: 13 years, 9 months ago
The project can be found here: https://github.com/boonebgorges/buddypress-docs It is working properly for the most part. I have to do a fair amount of work to the doc edit screen for it to be fully ready to launch. NB: I have been developing on the BP trunk. I’ve been adding 1.2.7 compatibility where it’s been obvious, […]
-
Boone Gorges posted on the forum topic Buddypress, how to install bbpress (doesn't work) in the group Requests & Feedback: 13 years, 9 months ago
Sure, you can disable the forums by going to Dashboard > BuddyPress > Component Setup and switching the Forums component to Disabled.
-
Boone Gorges posted on the forum topic Buddypress, how to install bbpress (doesn't work) in the group Requests & Feedback: 13 years, 9 months ago
Please don’t bump your posts more than once every 24 hours. To be clear, did you follow the steps from this page https://codex.buddypress.org/buddypress-site-administration/buddypress-forum/ , at the bottom where it reads Process for installing bbPress included with BuddyPress? 1) Dashboard > BuddyPress > Forum Setup 2) Setup a new installation,…[Read more]
-
Boone Gorges posted on the forum topic BP_init not working for themes Functions.php in the group How-To and Troubleshooting: 13 years, 9 months ago
It’s possible that bp_init is fired too early in the process for it to be detected with functions.php, which is only loaded with your theme (relatively late). Try hooking to something like ‘wp’ instead. You should be able to detect whether BP is activated by doing something like
if ( !function_exists( 'bp_loaded' ) ) return;
[…] -
Boone Gorges posted on the forum topic activity index > my groups selected – shows all activity in the group Creating & Extending: 13 years, 9 months ago
Changing the tabs is an appearance issue; it doesn’t have any effect on the activity items shown. Try the following function in your functions.php or bp-custom.php. The logic is this: If the query string is empty (as it is when you first visit the activity page) and there is nothing in the POST variable that […]
-
Boone Gorges posted on the forum topic Trying to modify the group loop [SOLVED] in the group Creating & Extending: 13 years, 9 months ago
In your code snippet, the magical part is user_id=, so you could do this
if ( strpos( bp_ajax_querystring( 'groups' ), 'user_id=' ) )
- Load More
@boonebgorges
Active 1 year, 4 months ago