-
Slava Abakumov replied to the topic An option to not allow members to post in group in the forum How-to & Troubleshooting 9 years ago
There is not such publicly available plugin.
But that’s an interesting idea to consider for plugins-dev. -
Slava Abakumov replied to the topic Email registration doesn't work in the forum How-to & Troubleshooting 9 years ago
Can BuddyPress send all other emails? Like new message, groups changes etc?
So, is the email with activation link the only email, that is not sent by BuddyPress? -
Slava Abakumov replied to the topic Change MetaDescriptions in the forum How-to & Troubleshooting 9 years ago
Try WordPress SEO plugin AND this hack:
https://github.com/Yoast/wordpress-seo/issues/1971#issuecomment-227008322That will fix titles. There is no solution for meta descriptions, unfortunately.
-
Slava Abakumov replied to the topic How to Limit the Activity Stream to a Certain Number of Updates in the forum How-to & Troubleshooting 9 years ago
Here is related Codex page.
You will need to change in your template something like this:<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>to this:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&per_page=10' ) ) : ?>Check your theme
/buddypress/activity/activity-loop.phpfile. If you don’t have it,…[Read more] -
Slava Abakumov replied to the topic Login Keeps Admin in the forum Installing BuddyPress 9 years ago
That’s definitely not a BuddyPress issue.
Make sure that you don’t have some “security” plugin activated, that might prevent the usual login process. -
Slava Abakumov replied to the topic Limitations to Installing BuddyPress on a Separate Site or a Subdomain in the forum Installing BuddyPress 9 years ago
AFAIK, installing BuddyPress on a subdomain of WordPress MultiSite won’t give you BP widgets (and other content) on a main site, thus you won’t be able easily (without coding) display BuddyPress content on any site in the network, excerpt the BP-site.
So BuddyPress content will be available only on site where you activated BuddyPress.I hope I’ve…[Read more]
-
Slava Abakumov replied to the topic Trouble in posting message in a sub domain instal in the forum Installing BuddyPress 9 years ago
So bp.example.com is the subdomain, that you use for BuddyPress. Does it have separate WordPress installation (not related to example.com)?
Is WordPress on your example.com MultiSite or ordinary? -
Slava Abakumov replied to the topic "Adding Friend" Button in the forum How-to & Troubleshooting 9 years ago
Seems you have fixed the issue.
I have just registered on your site, and sent a friendship request to user “admin”. Everything seems to be ok, I can cancel it. -
Slava Abakumov replied to the topic Buddypress page settings inheritance in the forum How-to & Troubleshooting 9 years ago
You definitely should try first to re-save page structure in Admin area => Pages => Members.
Users profile inherits everything related to that page (like slug and structure), BuddyPress just substitutes that page content, so all its settings should be in place. -
Slava Abakumov replied to the topic Activity BuddyPress in the forum Miscellaneous 9 years ago
That’s quite a lot of custom code.
All that activities are not related to BuddyPress directly. Although you can store them in activity directory when that action was performed using bp_activity_add() function.But as everything you described is not a default WordPress and BuddyPress functionality – I strongly advice you to find some developers,…[Read more]
-
Slava Abakumov replied to the topic Registration page Font style and size in the forum Installing BuddyPress 9 years ago
The only option is to use CSS (in
style.css) in your child theme to modify that. Or some plugins, that give ability to apply styles without modifying files (Siteorigin CSS).#buddypress #register-page label {
font-size:120%;
} -
Slava Abakumov replied to the topic Moderator add users to group in the forum Third Party Plugins 9 years ago
So far there is no such plugin.
You can try to dive into
bp_get_new_group_invite_friend_listfilter, and you will need to rewrite/buddypress/groups/single/send-invites.phptemplate.So quite a lot of work.
-
Slava Abakumov replied to the topic How To Disable User Avatar Uploads in the forum How-to & Troubleshooting 9 years, 3 months ago
Actually, this setting is still there. Check this screenshot: http://take.ms/TOux7
Check that you have Extended Profiles component activated – as avatars/covers uploading is part of it.
-
Slava Abakumov replied to the topic Login and registration on one page in the forum How-to & Troubleshooting 9 years, 3 months ago
BuddyPress registration page is quite big, it has a lot of inputs.
You can install a widget, called(BuddyPress) Log in. Here is info about it.
If you use Jetpack, there is a module there, that gives ability to define widgets visibility. Here are other plugins: one, two & etc.
Thus you will have ability to define, that this widget should be…[Read more] -
Slava Abakumov replied to the topic [Resolved] BP 2.6 and BuddyPress Group Extras Plugin in the forum Third Party Plugins 9 years, 3 months ago
Version 3.6.9 is released, pushed to WordPress repository. Soon it should be available worldwide.
-
Slava Abakumov replied to the topic [Resolved] BP 2.6 and BuddyPress Group Extras Plugin in the forum Third Party Plugins 9 years, 3 months ago
Fixed in repo. Hopefully will package the release this week with some other fixes.
Meanwhile, you can download the plugin code from github. -
Slava Abakumov replied to the topic [Resolved] BP 2.6 and BuddyPress Group Extras Plugin in the forum Third Party Plugins 9 years, 3 months ago
Part of the issue is fixed, see github.
<strike>New nav API requires me to rewrite drag-n-drop nav reordering feature completely, but I’m lazy and trying to find a workaround.</strike>
WIP.edited by slaFFik, thanks to @boonebgorges for the assistance
-
Slava Abakumov replied to the topic Redirect to Another Page and Not staying on the Right Page in the forum Third Party Plugins 9 years, 3 months ago
There is no such error on front-end (just tested).
Do you have this somewhere in wp-admin area? -
Slava Abakumov replied to the topic [Resolved] BP 2.6 and BuddyPress Group Extras Plugin in the forum Third Party Plugins 9 years, 3 months ago
I have some thoughts regarding the issue. Will try to test them this night.
-
Slava Abakumov replied to the topic Get "Edit Cover Image" link outside of Buddypress page in the forum How-to & Troubleshooting 9 years, 3 months ago
messages_get_unread_count()uses info about logged in user.
bp_get_members_component_link()– about displayed user.Logged in user – is based on cookies.
Displayed user – is based on the page user currently viewing.That’s why
messages_get_unread_count()works everywhere when user is logged in, whilebp_get_members_component_link()will work…[Read more] - Load More
@slaffik
Active 1 month, 3 weeks ago