-
Henry Wright replied to the topic Profile Avatar cropping problem in the forum How-to & Troubleshooting 10 years, 5 months ago
Hi Joe and Nat,
Can you provide some more details?
plugins used
theme used
WP and BP versions
any console errors or notices -
@mercime replied to the topic Buddypress plugin does nothing… in the forum How-to & Troubleshooting 10 years, 5 months ago
@drewmvshs Are you developing locally or on webhosting server?
@ldesherl Please be patient. We’re all volunteers living in different time zones.
-
@mercime replied to the topic Could not Save Basic Settings in the forum Installing BuddyPress 10 years, 5 months ago
@ldesherl I just see an error on your home page right now with the TGM plugin. Deactivate all plugins except BuddyPress. Change to a WP Default Twenty-* theme then activate BuddyPress.
P.S. For forums, install bbPress which works very well with BuddyPress
-
Diana K. Cury wrote a new post on the site BuddyPress Brasil 10 years, 5 months ago
BuddyPress 2.4.3O BuddyPress 2.4.3 está disponível. Este é um lançamento de manutenção que corrige uma questão com o suporte a ‘title-tag’.
-
Joseph G. replied to the topic Buddypress Multisite/Multinetwork. in the forum Creating & Extending 10 years, 5 months ago
Seems like a good idea 🙂
-
Henry Wright replied to the topic Hide deactivated users from members loop in the forum How-to & Troubleshooting 10 years, 5 months ago
@cityfox the only problem with that approach is it doesn’t consider pagination.
-
VMware Interface Customization Services's profile was updated 10 years, 5 months ago
-
Henry Wright replied to the topic is it possible know if the receiver read the message? in the forum How-to & Troubleshooting 10 years, 5 months ago
Hi @bruce30
The code I posted isn’t for cutting and pasting. It’s the name of the functions you could use to complete the task. And the text that follows is an overview of the things you’ll need to do when using those functions.
-
Lynn Hill replied to the topic Unable to Restore Events in the Bin/Trash in the forum How-to & Troubleshooting 10 years, 5 months ago
Thanks Shane. I’ll get someone to look into it.
-
Lynn Hill started the topic Unable to Restore Events in the Bin/Trash in the forum How-to & Troubleshooting 10 years, 5 months ago
I’m not sure if this is a WP or BP group issue. But when I move Group ‘Events’ on my website to the ‘Bin’ I am unable to restore them.
I can clearly see that the Bin has content, but they are not listed for me to restore if I bin them by mistake.
Blog posts are visible in the Bin and I am able to restore them but not BP group events.
BTW my…[Read more]
-
Henry Wright replied to the topic is it possible know if the receiver read the message? in the forum How-to & Troubleshooting 10 years, 5 months ago
Hi @bruce30
You would use
bp_messages_update_meta()andbp_messages_get_meta()to add data to and retrieve data from the table. One approach could be to add the user’s ID once the message is viewed and display some kind of indicator on the page to the rest of the message participants. -
Henry Wright replied to the topic Remove add friend button for member type in the forum How-to & Troubleshooting 10 years, 5 months ago
Oops, my apologies. This should work:
function browserco_filter_add_friend_button( $button ) {
$member_type = bp_get_member_type( bp_displayed_user_id() );
if ( 'business' !== $member_type ) {
return $button;
}
return "";
}
add_filter( 'bp_get_add_friend_button', 'browserco_filter_add_friend_button'… -
Henry Wright replied to the topic is it possible know if the receiver read the message? in the forum How-to & Troubleshooting 10 years, 5 months ago
Thanks @r-a-y, I think I was looking at an out-of-date database. 🙂
-
Henry Wright replied to the topic is it possible know if the receiver read the message? in the forum How-to & Troubleshooting 10 years, 5 months ago
I don’t think there’s a message meta table so you’d need to save some data to user meta when
bp_after_message_thread_contentfires.Alternatively there may be a plugin available but I’m not aware of one.
-
Henry Wright replied to the topic Issue with comment count when first comment is added and deleted of an activity in the forum Miscellaneous 10 years, 5 months ago
You should let the theme author know there’s a problem, and hopefully they can issue a fix.
-
Dishant Agrawal replied to the topic Issue with friendship activity when friend has deleted his account in the forum Miscellaneous 10 years, 5 months ago
Will you please provide me solution here and ASAP please? I would be thankful to you for that.
-
Dishant Agrawal replied to the topic Issue with comment count when first comment is added and deleted of an activity in the forum Miscellaneous 10 years, 5 months ago
I am using Fitzone theme. It is working fine and not causing any issues. No doubt a bug/issue in plugin.
-
Henry Wright replied to the topic Remove add friend button for member type in the forum How-to & Troubleshooting 10 years, 5 months ago
Try this:
function browserco_filter_add_friend_button( $button ) {
$member_type = bp_get_member_type( bp_displayed_user_id() );
if ( 'business' !== $member_type ) {
return $button;
}
return "";
}
add_filter( 'browserco_filter_add_friend_button', 'bp_get_add_friend_button' ); -
kennibc replied to the topic BP 2.4 breaks on page 2 of custom search results in the forum How-to & Troubleshooting 10 years, 5 months ago
Thanks. That indeed did the trick. However, if I view an individual profile and click on the profile field it shows a page with others who have the same profile term and uses the wrong format again. That is baked into the buddypress profile page. I cannot change that.
see this page and click on the school building tag in the profile:…[Read more]
-
kennibc replied to the topic BP 2.4 breaks on page 2 of custom search results in the forum How-to & Troubleshooting 10 years, 5 months ago
r-a-y,
I saw in the recent BP update this issue was addressed but I am still getting the issue. Am I missing something? As soon as I go to page two the custom search breaks for members. - Load More