-
David Bisset replied to the topic What is the most important thing BuddyPress is missing? in the forum Requests & Feedback 2 years, 1 month ago
I think it’s worth considering turning optional components into plugins as long as discovery and onboarding are done REAL well. The plugin directory is definitely a way, but i’ve seen companies do one-click installs from inside the settings screens of the plugins themselves.
Also another subject – how often do we (the collective we) feature…[Read more]
-
David Bisset replied to the topic What is the most important thing BuddyPress is missing? in the forum Requests & Feedback 2 years, 1 month ago
Thanks for the reply @imath. I was simply implying to look and see what they are doing – SOME of what they are doing I think fits into general interest (look at how they deal with media). They are doing research and it would be foolish to ignore some parts, even if it in the end it leads to ways we can mold it more toward BuddyPress thinking.…[Read more]
-
David Bisset replied to the topic What is the most important thing BuddyPress is missing? in the forum Requests & Feedback 2 years, 1 month ago
I might be too close to BuddyPress since using it since the 0.1 days (yes, that version is right). I do agree more with the comments so far about the “product fit” and some of that “vibe” feels like some people talking about where WordPress itself (which BP relies on) although I feel WordPress still fills many holes and has a long life to it. But…[Read more]
-
David Bisset replied to the topic Having multiple group slugs in the forum Creating & Extending 3 years, 6 months ago
I would love to be kept up to date on this (and even time permitting help). I’ll look at your comment/path as well. This would be something one would have to opt-in into – I can see this breaking plugins.
This request isn’t just for a single project – i’ve hit this same scenario more than once. Worthy of pursuit and allows BuddyPress developers…[Read more]
-
David Bisset started the topic Having multiple group slugs in the forum Creating & Extending 3 years, 6 months ago
So instead of “groups” I want to be able to use several slugs that act like aliases.
Example: I have a group called “Dimension Media”. It’s a business. Businesses are groups on the site, but discussion group and interest groups are too. So not one single slug on the site will work, or at least not as wanting.
-
David Bisset replied to the topic bp_get_member_type not returning value: 'Invalid Taxonomy' in the forum How-to & Troubleshooting 8 years ago
Thanks for the input @danbp and @sbradjesh.
Dan – thanks for the suggestion, but I was able to get the types all along. 🙂
Bradjesh – you’re right regarding the order but I thought i was able to do this before, especially working with plugins that I needed to work with the member type for some logic. I made adjustments based on your suggestion. 🙂 -
David Bisset started the topic bp_get_member_type not returning value: 'Invalid Taxonomy' in the forum How-to & Troubleshooting 8 years ago
I’m going to break this down as simple as possible, because it’s a little nuts. Using the latest versions of WordPress and BuddyPress, no other plugins unless otherwise mentioned. Default WP theme.
1. Go ahead and register a BuddyPress member type in bp-custom.php like…[Read more]
-
David Bisset replied to the topic Your connection to this user in the forum How-to & Troubleshooting 8 years, 2 months ago
Can you include a screenshot?
Are you sure this functionality isn’t coming from or be altered by another plugin or your theme?
-
David Bisset replied to the topic How to delete the Name field from Registration? in the forum How-to & Troubleshooting 8 years, 7 months ago
Using Gravity Forms is one solution, yes. It’s easy once you have the plugin itself PLUS the “user registration” plugin they offer which i think is open only for the developer license. It completely replaces the BuddyPress registration form. I use it for a variety of sites that need more complex registration forms (there of course is a tradeoff,…[Read more]
-
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
Thanks but that didn’t seem to do much either. I even checked back to other BP_Component examples and i’m using the same hooks. I’m guessing this is something “weird” (or something i’m not aware of) with bbPress. I just went ahead and created the bbPress forum and connected it to the BP group in my plugin manually. I hate to do that…[Read more]
-
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
-
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
Thanks. Sadly this isn’t working out. I’m going to post this here in case someone can tinker with it (you’ll need BP and bbPress installed):
https://dl.dropboxusercontent.com/u/14006840/curriki-group-import.zip
Yeah, i’m trying to use the BP native functions and hooks. I have no problem with the BuddyPress flow – just when it comes to relying on…[Read more]
-
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
Thanks for the response. That in a nutshell is what i’m doing right now with the change you suggest. Loader.php loads the file that contains the code above via bp_loaded. Then i try to initialize my class CurrikiGroupImport. So it’s a chicken and egg thing – either I can init my class and get the plugin loaded and showing up in the WP…[Read more]
-
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
The change to ‘bp_ready’ gets past the “crapstop” but my plugin no longer shows up in the menu. Although i’ve always thought ‘bp_loaded’ was the proper hook here, for the moment i’ll take it.
Here’s the full bit of code. Perhaps i’m not init the class properly here?
function curgi_group_import_init() {if (…[Read more]
-
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
Furthermore, I can create a group with my plugin WITH the “this groups has a forum” checkmark (but remember – my problem is that i can’t ACTUALLY create the forum). I can go into the “groups” area in the WP backend and simply edit the group and hit ‘update’ and WordPress DOES create the group. So it works there, but not in myplugin. I’m thinking…[Read more]
-
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
@shanebp – I have looked at that. function groups_new_group_forum is called by function groups_edit_group_settings which i’m calling. The “checkbox” for groups to have a forum is updated but no forum is created.
Here’s the lines of code in groups_edit_group_settings() in bp-groups-functions.php
[Read more]
// If forums have been enabled, and a forum does… -
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
@shanebp – I have looked at that. function groups_new_group_forum is called by function groups_edit_group_settings which i’m calling. The “checkbox” for groups to have a forum is updated but no forum is created.
Here’s the lines of code in groups_edit_group_settings() in bp-groups-functions.php
[Read more]
// If forums have been enabled, and a forum does… -
David Bisset replied to the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
@shanebp – I have looked at that. function groups_new_group_forum is called by function groups_edit_group_settings which i’m calling. The “checkbox” for groups to have a forum is updated but no forum is created.
Here’s the lines of code in groups_edit_group_settings() in bp-groups-functions.php
// If forums have been enabled, and a forum does…[Read more]
-
David Bisset started the topic Trying To Get Access BBPress In My BuddyPress Plugin in the forum Creating & Extending 9 years, 7 months ago
Howdy folks. My question is simple, but instead of being embrassed to share it i’ve decided to “Let It Go” (singing the Frozen theme song here).
Basically I’m writing a BuddyPress plugin that imports data from a client’s DB tables to create BuddyPress Groups. That’s fine. But i’m trying to create a forum for each group and i’m attempting to use…[Read more]
-
David Bisset started the topic Announcing BuddyCamp Miami 2015! in the forum Miscellaneous 9 years, 8 months ago
Greetings all – wasn’t sure where to put this (maybe a mod or admin can make this sticky in the right area in the forums).
Miami is holding it’s third BuddyCamp and date as of now is May 29th, 2015. We are looking for speakers (this week we are opening up speaker applications). If you would like to come down and speak about BuddyPress / bbPress,…[Read more]
- Load More
@dimensionmedia
Active 2 weeks, 1 day ago