-
r-a-y posted an update in the group oEmbed for BuddyPress: 13 years, 11 months ago
oEmbed support will be included in core for BP 1.3; there will not be another release for this plugin until then.
Plugin will change to become an “embed enhancer”. Features like embed resizing (as seen in the beta) and other “goodies” will be included.
-
r-a-y posted on the forum topic Buddy press installation in the group Installing BuddyPress: 13 years, 11 months ago
Sounds like you’re using an older version of WordPress.
Deactivate BuddyPress and upgrade WordPress:
https://codex.wordpress.org/Upgrading_WordPress_Extended -
r-a-y posted on the forum topic Important Buddypress Function not working in the group How-To and Troubleshooting: 13 years, 11 months ago
This is because the BP Template Pack plugin needs to be updated, particularly the JS variables.
Read this for a temporary solution:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddypress-template-pack-and-buddypress-1-2-6-things-break-but-i-have-a-solution -
r-a-y posted on the forum topic Date on profile showing 1 day back in the group How-To and Troubleshooting: 13 years, 11 months ago
It’s already been filed as a bug here:
https://trac.buddypress.org/ticket/2779 -
r-a-y posted on the forum topic Word count vs character count for automated excerpts: Feedback wanted in the group Localization: 13 years, 11 months ago
Echoing the sentiments for character count as well!
-
r-a-y posted on the forum topic Persistent Caching and Private Messaging in the group How-To and Troubleshooting: 13 years, 11 months ago
No need to hack BP.
Put the following in your theme’s functions.php:
function ray_bp_get_send_public_message_link() {
global $bp;return wp_nonce_url( $bp->loggedin_user->domain . $bp->activity->slug . '/?r=' . $bp->displayed_user->userdata->user_login );
}
add_filter( 'bp_get_send_public_message_link', 'ray_bp_get_send_public_message_link'…[Read more] -
r-a-y posted on the forum topic xprofile admin css breaks table elements in wp 3.1 rc1 in the group Miscellaneous: 13 years, 11 months ago
I believe this is fixed in trunk.
https://trac.buddypress.org/changeset/3591 -
r-a-y posted on the forum topic Buddypress activation fails 403 Forbidden in the group How-To and Troubleshooting: 13 years, 11 months ago
If you want to use a WP network install, you need to install WP in the root and not a subdirectory:
https://codex.wordpress.org/Giving_WordPress_Its_Own_DirectoryRead the red notice.
-
r-a-y posted on the forum topic bbpress plugins – is it possible ? in the group How-To and Troubleshooting: 13 years, 11 months ago
Just to give a quick summary: – current standalone bbPress plugins are possible to use with BuddyPress, but they need to be ported over to WordPress/BuddyPress. Check out Rich’s BP Forum Extras plugin, which combines a few of them: https://wordpress.org/extend/plugins/buddypress-group-forum-extras/ – forum editor tutorial:…[Read more]
-
r-a-y posted on the forum topic Installation Is Perfect, However My URL Structure Is Screwed! in the group How-To and Troubleshooting: 13 years, 11 months ago
Yeah, I’ve seen this issue before.
Revert your hacks and try this fix:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/faq-how-to-code-snippets-and-solutions/?topic_page=2&num=15#post-44366 -
r-a-y posted on the forum topic bp-messages Compose Message autocomplete issue in the group How-To and Troubleshooting: 13 years, 11 months ago
Thanks for the fix, @herostrat.
I’ve posted a patch for issue on the BP Trac:
https://trac.buddypress.org/ticket/2556Thanks again!
-
r-a-y posted on the forum topic Message send-to autocomplete and other problems fix in the group Requests & Feedback: 13 years, 11 months ago
@cronikeys – Thanks for the fix. Was just notified of this post now!
Better place for fixes is on the BuddyPress Trac:
https://trac.buddypress.org/newticketYou can login with the same credentials you use here on buddypress.org.
FYI, the issue is noted here:
https://trac.buddypress.org/ticket/2556Thanks again!
-
r-a-y posted on the forum topic bp_the_profile_field_value and separating values in the group How-To and Troubleshooting: 13 years, 11 months ago
If it separates by commas, just do a str_replace.
echo str_replace( ',', '', bp_get_the_profile_field_value() );
-
r-a-y posted on the forum topic Help with Messaging and @mentions in the group How-To and Troubleshooting: 13 years, 11 months ago
@stoi2m1 – Did you view the link I posted above? The info on the page tells you to use the “Mail From” plugin:
https://wordpress.org/extend/plugins/mail-from/Try that and see if emails are sent out.
-
r-a-y posted on the forum topic Memcached is breaking private messaging in the group How-To and Troubleshooting: 13 years, 11 months ago
Check out:
https://trac.buddypress.org/ticket/1332
https://trac.buddypress.org/ticket/2636You can temporarily fix private messaging by overriding the username filter. See #2583 for hints.
-
r-a-y posted on the forum topic Where did user interactions go? in the group How-To and Troubleshooting: 13 years, 11 months ago
No problem! So does that mean you fixed your problem? 😉
-
r-a-y posted on the forum topic Buddypress: not add new group / new topic/ login member in the group How-To and Troubleshooting: 13 years, 11 months ago
Can you try activating the BuddyPress Default theme to see if these problems go away?
Re: #4 – I just signed up for your site and it did not redirect me to the control panel after logging in.
-
r-a-y posted on the forum topic How to stop spammers or how to moderate the complete website? in the group How-To and Troubleshooting: 13 years, 11 months ago
I’ve experienced a bit of success with AVH First Defense Against Spam:
https://wordpress.org/extend/plugins/avh-first-defense-against-spam/Checks the user’s IP against StopForumSpam and Project Honeypot (with an API key) before parsing the entire page.
This won’t stop human spammers but every little bit helps. -
r-a-y posted on the forum topic Ban and Kick User is Broken in the group How-To and Troubleshooting: 13 years, 11 months ago
No need to bump the topic multiple times. If you are not sure how to patch and you feel a little adventurous, make the changes manually: https://trac.buddypress.org/attachment/ticket/2661/2661.002.patch If you have access to edit plugins, login to your WP dashboard and navigate to “Plugins > Editor” and select BuddyPress in the dropdown menu…[Read more]
-
r-a-y posted a new activity comment 13 years, 11 months ago
Hi, can you please post this on the support forum instead?
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/The reason is more people can help you if you post your problem publically.
- Load More
@r-a-y
Active 5 months ago
Thats cool news, great plugin.
Thank you @r-a-y, that’s good news indeed.