-
Boone Gorges posted on the forum topic Privacy Component Compatinility with BuddyPress 1.2.8 in the group BuddyPress Privacy Component (BP Privacy, BP_Authz, or BPAz): 13 years, 5 months ago
I haven’t looked closely at the code, but it’s likely that you are running multisite and you need to change admin_menu calls to network_admin_menu.
Open bp-authz-core.php and find lines that look like:
add_action( 'admin_menu',
Change them to
add_action( 'network_admin_menu'
That may solve your issue.
-
Boone Gorges posted on the forum topic Does anybody use Multiple Profile Types? in the group Creating & Extending: 13 years, 5 months ago
I have done this using WP user meta. At the moment, it takes a few hacks to get the directories working correctly. In BP 1.3, bp_has_members() has new ‘meta_value’ and ‘meta_key’ arguments, which will make it less hacky. You should be able to develop something at that point pretty easily. Or maybe someone could write […]
-
Boone Gorges posted on the forum topic BuddyPress Docs 1.1: Revision History in the group BuddyPress Docs: 13 years, 5 months ago
Yes, the feature is built on WP revisions. If you’ve turned off revisions sitewide, then you won’t see any history. I will make a note of this issue – I should probably check to see if revisions are disabled, and not show the history tab at all in those cases.https://github.com/boonebgorges/buddypress-docs/issues/102
-
Boone Gorges posted on the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 5 months ago
Great, thanks. I’ll release a new version with the bugfix.
-
Boone Gorges posted on the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 5 months ago
Did you remove the backticks? I had a typo that included an apostrophe where it shouldn’t have. Can you try again? (Sorry to make you do this, but I can’t recreate it on my machine)
-
Boone Gorges posted on the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 5 months ago
If you have never activated Network Mode, then you don’t have it activated. Don’t worry about it. Open up wp-content/plugins/bp-template-pack/bp-template.php. Around line 48 you’ll see a line that looks like this:
add_theme_page( __( 'BP Compatibility', 'bp-template-pack' ), __( 'BP Compatibility', 'bp-template-pack' ),…
[Read more] -
Boone Gorges posted on the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 5 months ago
Do you have network mode turned on? What is the exact content of the error message?
-
Boone Gorges posted on the forum topic Can't get to BP from WP in the group How-To and Troubleshooting: 13 years, 5 months ago
Platform is not BP compatible. I just downloaded it and verified. The author of the theme has put the ‘buddypress’ tag in the theme’s metadata, which tricks unsuspecting folks into thinking that it’s compatible. But there are no BP template files in the theme at all. (A pretty crappy thing for the author to do, […]
-
Boone Gorges posted on the forum topic bp_core_new_nav_item 's screen_function is not working properly in the group How-To and Troubleshooting: 13 years, 5 months ago
The problem is probably that you’re hooking to ‘wp’, which is too late in the loading process to add new items to the nav bar. Try hooking to ‘bp_setup_nav’ instead.
-
Boone Gorges posted on the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 5 months ago
Good call, @r-a-y. I’m releasing a new version right now with the changes.
-
Boone Gorges posted on the forum topic Buddypress is Not my Buddy… :o( in the group Installing BuddyPress: 13 years, 5 months ago
There are a lot of people in this forum who would probably be willing to help, but you have to give more information than “Crash. Every time. Epic Fail.”
Also, it’s unlikely that there will be responses within 11 minutes, so there is no need to bump your post within that period of time.
-
Boone Gorges posted on the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 6 months ago
The Template Pack does, essentially, three things: 1) Moves BP-specific templates into your child theme 2) Enqueues bp-default’s JS 3) Enqueues a stripped-down version of bp-default’s CSS, to handle structural stuff As @r-a-y says, you probably don’t want to replace your customized templates. Instead, you’ll have to merge in any custom…[Read more]
-
Boone Gorges posted on the forum topic ETA on Buddypress 1.3 – when will it be released? in the group Creating & Extending: 13 years, 6 months ago
BuddyPress development moves as quickly as it can with an all-volunteer crew of developers and support specialists. If you’re concerned that things aren’t moving quickly enough, you should get involved.
-
Boone Gorges started the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 6 months ago
I’ve upgraded the BuddyPress Template Pack! Read more: https://buddypress.org/2011/05/buddypress-template-pack-1-1/
-
Boone Gorges posted on the forum topic CSS pathing incorrect in the group BuddyPress Docs: 13 years, 6 months ago
Yeah, I did some more research. The DIRECTORY_SEPARATOR constant really only needs to be used when parsing a local path that is given to you by the system (such as dirname()), but not when defining includes.
I’ll refactor in the next version.
-
Boone Gorges posted on the forum topic CSS pathing incorrect in the group BuddyPress Docs: 13 years, 6 months ago
Hm. Weird, I thought that PHP had to have this constant defined.
As a test, would you mind putting the following line into your bp-custom.php or wp-config.php file?
if ( !defined( ‘DIRECTORY_SEPARATOR’ ) )
define( ‘DIRECTORY_SEPARATOR’, ‘/’ );If that works, I can add it to the plugin itself.
-
Boone Gorges posted on the forum topic BuddyPress Docs 1.1: Revision History in the group BuddyPress Docs: 13 years, 6 months ago
4ella – At the moment, there is no way (in the UI) for Docs to be associated with multiple groups. So this should not be a concern.
In the future it may be possible, at which point you’re correct that some sort of notification will have to be present.
-
Boone Gorges posted on the forum topic Option to have the docs to be associated with members instead of groups. in the group BuddyPress Docs: 13 years, 6 months ago
Yes. See https://buddypress.org/community/groups/buddypress-docs/forum/topic/comunity-docs/ – same answer. Look for this feature when BP 1.3 is released.
-
Boone Gorges posted on the forum topic Comunity Docs in the group BuddyPress Docs: 13 years, 6 months ago
Yes, that’s planned, but I’m waiting for BP 1.3, because it’ll be implemented differently, and I don’t feel like doing two different versions 🙂
-
Boone Gorges posted on the forum topic Group Reviews enabled by default in the group BP Group Reviews: 13 years, 6 months ago
At the moment, there’s not an easy way to do this. (I have some filters in place, but they’re not working as smoothly as I’d like.) I’ve created an issue ticket to try to make this feature in the future: https://github.com/boonebgorges/bp-group-reviews/issues/19
- Load More
@boonebgorges
Active 1 year, 4 months ago