Travel-Junkie
Coder, dive professional and passionate traveller
Interests
PHP, diving, travelling
-
Travel-Junkie replied to the forum topic Why don't you install the envolve chat plugin here? in the group Requests & Feedback
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
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
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
What @mercime said together with filtering
groups_valid_statusto 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
Have you had a look at Mapology?
http://shop.shabushabu.eu/plugins/mapology.html
There’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
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 […]
-
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
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
Don’t include the [ ] in the syntax
So it’d be like this:
UPDATE wp_bp_activity SET action = replace(action,’admin1‘,’admin2‘); -
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
That would be something like this:
UPDATE [tablename] SET [fieldname] = replace([fieldname],'[string_to_find]','[string_to_replace]');You’ll need to substitute stuff like [tablename] with the correct values.
-
Travel-Junkie replied to the forum topic autocomplete on custom plugin in the group Creating & Extending
You’ll have to enqueue the Javascript files in bp-messages/js/autocomplete and the css file in bp-messages/css/autocomplete. There’s also some inline JS that needs to be included, which you can find in […]
-
Travel-Junkie replied to the forum topic Q: working with $wpdb class and Buddypress 1.5 (custom SQL calls) in the group How-To and Troubleshooting
If you want to add a record, then there are API functions to do that for you for the most part.
xprofile_insert_field()is one such function. There’s more in bp-xprofile/bp-xprofile-functions.php.If you […]
-
Travel-Junkie replied to the forum topic Subpages of root component disappeared after upgrade to latest SVN in the group How-To and Troubleshooting
That would’ve been something like this:
`function bpe_setup_globals()
{
global $bp;// some stuff
$bp-active_components['events'] = 1;
// some more stuff
}
add_action( […] -
Travel-Junkie replied to the forum topic Subpages of root component disappeared after upgrade to latest SVN in the group How-To and Troubleshooting
Ended up using
register_activation_hookandregister_deactivation_hookto modify thebp-active-componentsoption, which populates the$bp->active_componentsarray. -
Travel-Junkie started the forum topic Subpages of root component disappeared after upgrade to latest SVN in the group How-To and Troubleshooting
Hello all,
just a quick question for the core devs. Just upgraded to the latest 1.5 SVN version. Now, in Buddyvents, subpages of the root page are unavailable. The root page is available cause a direct match is […]
-
This site here is not a sandbox. It’s not meant to test things out. That would be http://testbp.org, as you can see from the theme, for example. testpb runs the default theme, while we have a more or less […]
-
Travel-Junkie started the forum topic Activity and site tracking in BP 1.5 - Possible bug in the group How-To and Troubleshooting
Here’s something strange. On a clean install of WP and BP 1.5 I had the activity component on and the site tracking off. The activity page would then be inaccessible and redirect to the frontpage. When I […]
-
Allright, cheers! More than a few days should be enough to fit everything in
There’s never enough hours in a day, though… -
Just wanted to get a feel for the arrival of BP 1.5 stable. Not looking for a definite date, but it’d be nice to know if we’re talking days or a couple weeks? Noticed quite a lot of movement on trac and at some […]
-
Travel-Junkie replied to the forum topic 937 lines of bugs !!! in the group How-To and Troubleshooting
These are not bugs, they’re notices, meaning that the plugin will still work. These have been resolved in BP 1.5, btw.
- Load More