-
r-a-y posted a new activity comment 14 years, 3 months ago
Sorry for the late reply.
You should definitely post your questions on the forums rather than on my profile page as there are more eyeballs!
Re #1: try using the bp-default theme and disable any running plugins that might cause the conflict.
Re #2: Not sure exactly what you mean here. If you mean that the page title is different on a subblog…[Read more]
-
r-a-y posted on the forum topic BuddyPress Template Pack in the group BP-Default: 14 years, 3 months ago
FYI, login widget ticket is here:
https://trac.buddypress.org/ticket/1474There’s a patch by Boone there.
-
r-a-y posted on the forum topic Adding action in global.js ? in the group Creating & Extending: 14 years, 3 months ago
Use wp_deregister_script():
https://codex.wordpress.org/Function_Reference/wp_deregister_scriptThere are a bunch of tutorials out there.
Here’s one:
-
r-a-y posted on the forum topic Setting Activity as BP home page. in the group How-To and Troubleshooting: 14 years, 3 months ago
Depending on your BP version, have you tried upgrading BuddyPress?
Also try to resave your permalink settings:
https://codex.buddypress.org/troubleshooting/navigation-links-return-404-errors/I have activity stream set as frontpage on a secondary blog on my test install.
Works fine. -
r-a-y posted on the forum topic Automatically join groups in the group How-To and Troubleshooting: 14 years, 3 months ago
Welcome Pack should allow you to automatically join users to groups the site admin defines when their account is activated. Be sure to read the following as well when using Welcome Pack to force users to groups: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/standard-group-for-new-users/#post-69096 — Besides, if…[Read more]
-
r-a-y posted on the forum topic Blog Plugin NOT MU in the group How-To and Troubleshooting: 14 years, 3 months ago
mercime, thanks for adding that extra info! Forgot to write about WP roles and frontend posting!
-
r-a-y posted on the forum topic How to set up Forums/Groups? Where are the basic instructions? in the group Installing BuddyPress: 14 years, 3 months ago
@hnla – I think that works for now.
-
r-a-y posted on the forum topic Blog Plugin NOT MU in the group How-To and Troubleshooting: 14 years, 3 months ago
Buddydev.com has a group blog plugin that takes advantage of standard WP’s blog categories:
Something similar could be put together like that for members instead of groups.
-
r-a-y posted on the forum topic BP Group Reviews plugin release in the group BP Group Reviews: 14 years, 3 months ago
Another plugin is required since this is tied specifically to groups.
-
r-a-y posted on the forum topic Display Number of Users Online in the group How-To and Troubleshooting: 14 years, 3 months ago
Here’s a quick snippet you can add in your theme’s functions.php:
function ray_number_online_users() { $i = 0; if ( bp_has_members( 'user_id=0&type=online&per_page=999&populate_extras=0' ) ) : while ( bp_members() ) : bp_the_member(); $i++; endwhile; endif; return $i; }
Then you can use it in a template like:if ( function_exists(…
[Read more] -
r-a-y posted on the forum topic How to set up Forums/Groups? Where are the basic instructions? in the group Installing BuddyPress: 14 years, 3 months ago
To add a friend, simply navigate to a member profile you want to become friends with and click on the “Add Friend” button. The requested member gets an email notification asking whether or not to accept the friendship. Please go and test BuddyPress thoroughly on http://testbp.org, then come back here for any help. — For […]
-
r-a-y posted on the forum topic BP Group Reviews plugin release in the group BP Group Reviews: 14 years, 3 months ago
Could have used this a few months ago when I had to develop something similar! 😉
-
r-a-y joined the group BP Group Reviews 14 years, 3 months ago
-
r-a-y posted on the forum topic Can I edit/disable adminbar.css?ver=3.0.1? (not adminbar.css) in the group How-To and Troubleshooting: 14 years, 3 months ago
@zomex – If you’re trying to override the adminbar CSS on the subblog, create a file called:
/wp-content/themes/_YOURTHEME_/_inc/css/adminbar.css
And copy the styles from bp-default’s adminbar.css. Then you can customize the styles to your heart’s content.
-
r-a-y posted on the forum topic Can members use forum without groups? in the group How-To and Troubleshooting: 14 years, 3 months ago
According to JJJ, the new bbPress plugin will work well with BuddyPress 1.3; BP 1.3 is scheduled to come out sometime in the New Year.
-
r-a-y posted on the forum topic RSS feed of forum topics? in the group How-To and Troubleshooting: 14 years, 3 months ago
You could probably use Boone’s plugin as a guide to create the RSS feed.
A RSS feed could be created with an activity stream loop that targets group forum topics.You can also check out /buddypress/bp-activity/feeds/ and /buddypress/bp-activity.php to see how BuddyPress does it.
-
r-a-y posted on the forum topic avatar in new blog posts activity stream in the group How-To and Troubleshooting: 14 years, 3 months ago
-
r-a-y posted on the forum topic @mentions is confusing to members in the group How-To and Troubleshooting: 14 years, 3 months ago
@rgauny, @rogercoathup, @adelack, @rossagrant, @joeward, @babajoon, @bluebird2, @guigoz
New plugin: BuddyPress No Mentions
https://wordpress.org/extend/plugins/buddypress-no-mentions/Enjoy!
-
r-a-y posted on the forum topic User/Group avatar URL *without* IMG tag in the group Creating & Extending: 14 years, 4 months ago
If you need to stay on BP 1.2.4, you could probably just copy the part of the bp_core_fetch_avatar() function that adds support for the ‘html’ parameter… but I’d strongly suggest upgrading when you have the chance.
See the codex article on upgrading:
https://codex.buddypress.org/buddypress-site-administration/upgrading-buddypress/ -
r-a-y posted on the forum topic Preserving child theme in the group BP-Default: 14 years, 4 months ago
I would also suggest to check out this codex page for updates to the bp-default theme every once in awhile:
https://codex.buddypress.org/theme-development/bp-default-theme-changelog/ - Load More
@r-a-y
Active 8 months, 2 weeks ago
Also, for follow-ups, please post on the forum! Thanks!