-
r-a-y posted on the forum topic PHP help links in bp_core_add_message in the group How-To and Troubleshooting: 14 years, 3 months ago
Haven’t tested this, but try adding your message in a variable:
$message = 'This is my message with a <a href="http://buddypress.org">link</a>';
bp_core_add_message( $message );
-
r-a-y posted on the forum topic Pugin so users can search for each other based on interests? in the group Creating & Extending: 14 years, 3 months ago
As far as I know, there is no automatic matching plugin based on a user’s profile fields.
However, users can manually search for other members.
Use the BP profile search plugin for more fine-tuned searches:
https://buddypress.org/community/groups/bp-profile-search/ -
r-a-y posted on the forum topic Error with BP-usernames-only in the group Creating & Extending: 14 years, 3 months ago
@footybible – Yes please send me a link. If you have an email addy, use http://scr.im and post it that way.
-
r-a-y posted on the forum topic username not displaying next to "What's new?" in the group BuddyPress Usernames Only: 14 years, 3 months ago
@shagazulu – Sorry for the late reply. I can confirm that the plugin doesn’t replace the “What’s new, user” on the activity front page, but the username shows up correctly on the profile post form. Just added some code that fixes this on the activity directory / front page. Look for it in the next few […]
-
r-a-y posted a new activity comment 14 years, 3 months ago
Sorry for the late reply. The plugin doesn’t allow you to change this to a specific xprofile field. I most likely will not add support to do this.
-
r-a-y posted on the forum topic Friend Requests and Sending Messages Not Working in the group How-To and Troubleshooting: 14 years, 3 months ago
Re: friend requests page – you have to be logged in in order to view that page. This is a usability bug; will post it on the BP Trac.
-
r-a-y posted on the forum topic Having a problem where a person cannot send messages to another even though he is a friend. in the group BuddyPress Private Messages for Friends Only: 14 years, 3 months ago
@hotforwords – Sorry for missing your forum thread. I should check the plugin groups more often. One thing to note: if the sender is trying to mass-PM a bunch of people and s/he’s not a friend of one of the recipients, the PM will automatically be blocked. This is a spam prevention measure. Another thing is […]
-
r-a-y posted on the forum topic Error with BP-usernames-only in the group Creating & Extending: 14 years, 3 months ago
@footybible – We’re not always online at the time you want to be!
Try deactivating and deleting the plugin, then install the plugin manually:
https://downloads.wordpress.org/plugin/buddypress-usernames-only.zipIf the problem persists let me know and I’ll look into it.
-
r-a-y posted on the forum topic Child Themes – Best Practice in the group Creating & Extending: 14 years, 3 months ago
Some recommend copying the default CSS over to your stylesheet. Benefits of this approach is one less data request and full control over your styles (good when you’re designing a completely different look from bp-default). Negative is if your child theme completely relies on the bp-default theme with little design changes, you might as well […]
-
r-a-y posted on the forum topic Site Title in Admin Bar in the group How-To and Troubleshooting: 14 years, 3 months ago
Just tested this on BP 1.2.6 and your example works for me.
What version of BuddyPress are you using? This was a bug in a previous version of BP.
-
r-a-y posted on the forum topic Buddypress 1.2.6 in the group How-To and Troubleshooting: 14 years, 3 months ago
Re #1 – BP 1.2.7 will fix this.
If you can’t wait until then, try the solution posted in this thread:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/am-i-going-mad-or-are-there-now-avatars-next-to-posts-in-the-activity-stream/?topic_page=2&num=15#post-76621Re #2 – Most likely a child theme issue. Can you…[Read more]
-
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 – You might want to try this in your theme’s functions.php:
remove_action( 'init', 'bp_core_add_admin_bar_css' );
if ( !is_admin() )
add_action( 'init', 'bp_core_add_admin_bar_css' );Untested, but give it a shot.
—
Actually, based on your report, it’s hard to give a definitive answer. What exactly is breaking in the admin…
-
r-a-y posted a new activity comment 14 years, 3 months ago
Maybe xmas time. No guarantees.
-
r-a-y posted on the forum topic Forum Directory Margin Cut off in the group How-To and Troubleshooting: 14 years, 3 months ago
Please don’t bump your thread after two hours; a good window for bumping is 24 hours.
Also no one can tell based on your screenshot what exactly needs to be fixed in the CSS.
I’m guessing it’s a padding / margin or z-index issue.If possible, can you post a link to your site?
-
r-a-y posted a new activity comment 14 years, 3 months ago
Hi, disregard the whitelist. That’s the wrong terminology.
wp_embed_register_handler() should work with the 0.6 beta:
https://buddypress.org/community/groups/oembed-for-buddypress/forum/topic/oembed-for-bp-0-6-beta-available/ -
r-a-y posted on the forum topic Admin Check Suggestion in the group BuddyPress Private Messages for Friends Only: 14 years, 3 months ago
@techguy – Good call. Thanks for the suggestion.
When I wrote the plugin, I wasn’t thinking about external plugins!
Will make its way into the next release. -
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
Custom permalink structure shouldn’t matter, but have you tried resaving the permalink settings?
Also try disabling any plugins that might interfere with this. Including redirect and caching plugins.As a last resort, you can always create a page template copying exactly what is in /buddypress/bp-themes/bp-default/activity/index.php and setting…[Read more]
-
r-a-y posted on the forum topic change nav content when on member profile page. in the group Miscellaneous: 14 years, 3 months ago
bp_is_member() returns true if you’re on a member’s profile page.
Try that in your header.
-
r-a-y posted on the forum topic missing stylesheet in the group Installing BuddyPress: 14 years, 3 months ago
Make sure you have a /bp-themes/bp-default/ folder complete with stylesheet in your /wp-content/plugins/buddypress/ folder.
If you don’t, manually reupload the BuddyPress plugin to your /wp-content/plugins/ folder:
-
r-a-y posted a new activity comment 14 years, 3 months ago
Also, for follow-ups, please post on the forum! Thanks!
- Load More
@r-a-y
Active 8 months, 2 weeks ago
Thank you very much r-a-y!! it works perfectly!