-
r-a-y posted a reply on the forum topic PLSHELPHELPHELP from Volunteers trying to put together a publishing platform: 1 hour, 51 minutes ago
You write too much

Still not sure quite what you want to do.
First of all, you need to install BuddyPress. On first glance at your site, it doesn’t look like you’ve installed it at all.
Second of all, since you’re using a different theme, once you’ve installed BP, you’ll need to use the BP Template [...] -
r-a-y posted a reply on the forum topic Fatal Error: Buddypress ajax chat plugins. Please help me with this.: 2 hours, 5 minutes ago
get_blog_option only exists in WPMU.
@vinbytes
You should head on over to Dave’s support group for his plugin:
http://getpaidfrom.us/groups/buddypress-chat-technical-support -
r-a-y posted a reply on the forum topic BuddyPress-Links 0.3 FINAL is here at last: 3 hours, 32 minutes ago
From the Links directory.
eg. example.com/links/ -
r-a-y posted a reply on the forum topic Making tabs open in a new window in BuddyPress: 4 hours, 8 minutes ago
To customize the tab names, read this:
http://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/
To change the slug of groups to something else, read this:
http://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/ -
r-a-y posted a reply on the forum topic CSS fix ?: 4 hours, 16 minutes ago
It’s hard to debug from a screenshot, Erich.
Can you pass on a URL?
If not, send it via PM and I’ll check it out.
Like I mentioned in the ticket, it’s a theme issue. I’m 100% sure the issue doesn’t exist if you’re using the default theme. -
r-a-y posted a reply on the forum topic Making tabs open in a new window in BuddyPress: 4 hours, 20 minutes ago
Child theme! Child theme! Child theme!
Copy over /bp-themes/bp-default/header.php to your child theme and modify the nav tabs to open in a new window.
What’s a child theme you may ask?
http://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/ -
r-a-y posted a reply on the forum topic How to make a private community?: 5 hours, 42 minutes ago
I haven’t tried my mod site-wide on WPMU because it was only needed on the BP community-side. You can give it a try though.
If you’re not using WPMU, you should be okay. -
r-a-y posted a reply on the forum topic How to make a private community?: 5 hours, 50 minutes ago
Instead of modifying all the BP templates, you could try the Registered Users Only 2 plugin:
http://wordpress.org/extend/plugins/registered-users-only-2/
I’ve made a few mods to that plugin to better support BP here:
http://buddypress.org/forums/topic/bp12-plugin-wishlists#post-42114 -
r-a-y posted a reply on the forum topic CSS fix ?: 5 hours, 54 minutes ago
Try this:
.activity-list li.mini {margin-left:-2em;}
Adjust the margin-left to your needs. -
r-a-y posted a reply on the forum topic Permalinks setup with WP intalled in subdirectory and index.php in root: 6 hours, 58 minutes ago
The easiest way off the top is to apply a filter to ’bp_core_get_root_domain’ to remove the /folder/ subdirectory.
There’s probably another way though. -
r-a-y posted a reply on the forum topic [New Plugin] BuddyPress Group Forum Extras: 10 hours, 8 minutes ago
I kind of figured that, but it sounds like you’ve got a handle on it!
I guess my next question is would it be possible to add a subnav item to ”My Favorites” for bbPress topics? Just to avoid another nav item. -
r-a-y posted a reply on the forum topic BP Signup TOS doesn't show on sign up page: 10 hours, 19 minutes ago
It’s not compatible with 1.1 either.
-
r-a-y posted a reply on the forum topic [New Plugin] BuddyPress Group Forum Extras: 10 hours, 30 minutes ago
Re: bbPress favorites. Sounds cool!
Would this hook into the existing BP ”Favorites” system? -
r-a-y posted a reply on the forum topic [New Plugin] BuddyPress Group Forum Extras: 11 hours, 24 minutes ago
@gregfielding
The answer to your Q is yes. -
r-a-y posted a reply on the forum topic Is anyone using Buddypress-Ajax-Chat?: 11 hours, 25 minutes ago
@gregfielding
David’s own site – getpaidfrom.us – uses it. -
r-a-y posted a reply on the forum topic BP Signup TOS doesn't show on sign up page: 11 hours, 26 minutes ago
That plugin is not compatible with BP 1.2.
-
r-a-y posted a reply on the forum topic Is anyone using Buddypress-Ajax-Chat?: 1 day, 4 hours ago
Is the demo working for any of you?
-
r-a-y posted a reply on the forum topic How do I remove log in ?: 1 day, 5 hours ago
Copy /bp-themes/bp-default/sidebar.php to your child theme.
Remove the login block and you should be good to go. -
r-a-y posted a reply on the forum topic oEmbed for BuddyPress plugin – out now!: 1 day, 10 hours ago
@toddfarmer
A few people have asked for this; this plugin doesn’t work for blog comments
I’ll be releasing a separate plugin for that late this week as I don’t want to bundle it with the oEmbed BP plugin. -
r-a-y posted a reply on the forum topic BP Album vs BP Gallery: 1 day, 23 hours ago
Please keep it civil, people.
-
r-a-y posted a reply on the forum topic [New Plugin] BuddyPress Group Forum Extras: 2 days, 3 hours ago
Nice work!
I’ve only tried the AJAXed quote so far, but it works as advertised.
A suggestion for AJAXed quote, perhaps add a link to the post that’s mentioned for the ”said” text.
Also couldn’t BBcode be enabled across all components and not just the forums? I had a similar port of _ck_’s BBcode plugin doing this. -
r-a-y posted a reply on the forum topic Changing the activation email that users get: 2 days, 4 hours ago
There’s no admin feature to change the text of the activation email, but you can apply a filter to it.
Put this in your theme’s functions.php:
function my_activation_email($message) {
$message = str_replace('Thanks for registering! To complete the activation of your account please click the following link:','My message is the best message ever.Really it is.
So I guess you should [...]
-
r-a-y posted a reply on the forum topic CubePoints and BuddyPress Intregration?: 2 days, 4 hours ago
I’m going to let you try this on your own

Don’t worry! I’ll give you some hints.
Create a function like the above and then find the appropriate BP action to hook your function to.
Look in /buddypress/bp-activity.php. Do a search for ”do_action”.
If you want more hints, the BP actions are:
- bp_activity_posted_update<br [...]