-
Travel-Junkie replied to the forum topic BuddyPress releases are flying out too fast IMO. [Core Team, Please Read] in the group Miscellaneous 12 years ago
@hnla
I do see the point and I did not mean at all that we don’t need a codex. I was merely replying to an earlier comment. -
Travel-Junkie replied to the forum topic BuddyPress releases are flying out too fast IMO. [Core Team, Please Read] in the group Miscellaneous 12 years ago
-
Travel-Junkie replied to the forum topic BuddyPress releases are flying out too fast IMO. [Core Team, Please Read] in the group Miscellaneous 12 years ago
Wait until you have a myriad of new features and THEN make a release
Now, that’s bad practice right there. Ever heard of release early, release often?
I agree that the codex isn’t anywhere near where it […]
-
Travel-Junkie replied to the forum topic Custom groups loop with groups meta in the group How-To and Troubleshooting 12 years, 2 months ago
Rather than doing two loops, one of which will run through all available groups to perform a database request each time, just do 1 query that gets all group ids and then pass those ids to the include parameter. […]
-
Travel-Junkie replied to the forum topic getting array of all groups in the group How-To and Troubleshooting 12 years, 2 months ago
You can set the parameters of which groups to get within
bp_has_groups
. One of the arguments,user_id
, defaults to the displayed user. Settinguser_id
to false should do the trick:
`bp_has_groups( array( […] -
Travel-Junkie replied to the forum topic Getting array of all members in the group How-To and Troubleshooting 12 years, 2 months ago
Oh, yeah, forgot that BP_User_Query’ll only land in v1.7. Can’t think of anything else apart from a custom SQL query then. Maybe a good idea to refactor it once you upgraded to BP 1.7, though.
-
Travel-Junkie replied to the forum topic Getting array of all members in the group How-To and Troubleshooting 12 years, 2 months ago
Also, a select box might not be the best option for what you have in mind. Imagine you’ll get a result of a couple hundred users. Becomes completely unusable. Not sure what your ultimate goal is with that […]
-
Travel-Junkie replied to the forum topic Getting array of all members in the group How-To and Troubleshooting 12 years, 2 months ago
What do you need the profile fields for? Seems like WP_User_Query would do the job perfectly.
https://codex.wordpress.org/Class_Reference/WP_User_Query.If role is stored as an xprofile field, you might want to […]
-
Travel-Junkie replied to the forum topic Showcase Large BP Installs That Are Publicly Accessible in the group How-To and Troubleshooting 12 years, 3 months ago
The time spent on running all the filters and actions is negligible, really. And if you need the extra functionality a plugin provides, then it doesn’t matter if you include the code as a plugin or include it via […]
-
Travel-Junkie replied to the forum topic Showcase Large BP Installs That Are Publicly Accessible in the group How-To and Troubleshooting 12 years, 3 months ago
It’s a myth that a WP site runs slower or more poorly the more plugins you have installed. The more plugins you install, the greater the chance that one of them is written poorly, which could then cause a […]
-
Travel-Junkie replied to the forum topic Making HUGE amounts of groups quickly? Need some ideas? in the group How-To and Troubleshooting 12 years, 4 months ago
Sorry, that txt file seems to have gotten deleted during the redesign and general housecleaning a year or so ago. I don’t have it around anymore neither. It’s fairly easy to write yourself, though. Just have a […]
-
Travel-Junkie replied to the forum topic Why don't you install the envolve chat plugin here? in the group Requests & Feedback 12 years, 8 months ago
Well, this is really a support site rather than a social network, even if it does use BP, so a chat plugin of any kind is probably not appropriate (at least in my opinion).
-
Travel-Junkie replied to the forum topic Allow comments in user profiles. in the group How-To and Troubleshooting 12 years, 8 months ago
First of all, I guess that’s what the personal activity stream is for. Anyways, comments are linked to post ids and members are (not yet? maybe never? who knows…) not a custom post type yet.
You could […]
-
Travel-Junkie replied to the forum topic Remove/Disable Hidden Group Creation? in the group How-To and Troubleshooting 12 years, 8 months ago
Something like this in bp-custom.php:
`function my_filter_group_stati( $stati ) {
if( $key = array_search( ‘hidden’, $stati ) ) {
unset( $stati[$key] );
}return $stati;
}
add_filter( […] -
Travel-Junkie replied to the forum topic Remove/Disable Hidden Group Creation? in the group How-To and Troubleshooting 12 years, 8 months ago
What @mercime said together with filtering
groups_valid_status
to only return public and private should do the trick. -
Travel-Junkie replied to the forum topic WILL PAY FOR HELP!!!! BP Geo Replacement in the group Creating & Extending 12 years, 9 months ago
Have you had a look at Mapology?
http://shop.shabushabu.eu/plugins/mapology.htmlThere’s a test site at http://test.shabushabu.eu where you can try the plugin before commiting to buy.
Please note that I am […]
-
Travel-Junkie replied to the forum topic How to have my changes in the po file appear at my buddypress site? in the group Localization 12 years, 10 months ago
Get yourself poEdit. Open the po file with it and when you save that file poEdit should automatically create a mo file, which you can then upload to your site into bp-languages. Make sure that it’s named exactly […]
-
Travel-Junkie replied to the forum topic bb-config.php in the group How-To and Troubleshooting 12 years, 10 months ago
Create a page called forums, or discusssions or whatever you like (if you haven’t already), then go to the BP pages settings and chose the page you created for your forums component. Save and all sshould be good.
-
Travel-Junkie started the forum topic Achievements and BP Moderation in the group Third Party Components & Plugins 12 years, 10 months ago
Awesome plugins, but I have one tiny little remark (isn’t there always? :). Buddyvents (my events plugin) is integrated with both Achievements and BP Moderation. Since the latest […]
-
Travel-Junkie replied to the forum topic How do you 'Find and Replace' a word in the BP Activity table in the Database? in the group How-To and Troubleshooting 13 years, 2 months ago
Don’t include the [ ] in the syntax 🙂
So it’d be like this:
UPDATE wp_bp_activity SET action = replace(action,’admin1‘,’admin2‘);
- Load More
@anonymized-96400
Active 1 month, 3 weeks ago