-
Slava Abakumov replied to the topic How could all activities for a user be deleted? in the forum How-to & Troubleshooting 8 years, 9 months ago
When a user is marked as spammer – all user activity/groups data is deleted. Only admins can do that, AFAIK.
There are no logs or records for this action. And this action is irreversible. -
Slava Abakumov replied to the topic Need help combining bp_has_members() values to customize members loop in the forum How-to & Troubleshooting 8 years, 9 months ago
// this function should return array with users ids, like this: array(123,3423,21,34231)
$user_ids = my_custom_ids( 'gender', 'female' );if ( bp_has_members( array(
'type' => 'online',
'include' => $user_ids
) ) ) : -
Slava Abakumov replied to the topic Add Group Category & Cities in the forum How-to & Troubleshooting 8 years, 9 months ago
It’s possible, but there is no ready-to-use out-of-the-box plugins for that.
Categories: http://wptavern.com/new-plugin-adds-taxonomies-to-buddypress-groups or https://wordpress.org/plugins/bp-group-categoriestypes/
Location:…[Read more]
-
Slava Abakumov replied to the topic Remove labels from xprofile edit in the forum How-to & Troubleshooting 8 years, 9 months ago
I checked the code – it won’t decrease number of queries. All the data for labels are taken from a global variable, which is set when all fields are populated. So you won’t decrease server load by removing labels.
So you can do that via CSS. There is no other simple solution for that (I’m assuming you are on a BuddyPress 2.4.x). Editing template…[Read more]
-
Slava Abakumov replied to the topic Remove Birthday from Public in the forum How-to & Troubleshooting 8 years, 9 months ago
There is a setting for this on a screen, where you edit this field: http://take.ms/B1sZI
So just selectEnforce field visibility
and Visibility selectbox change toOnly me
.
Thus users (and admin, of course) will be able to see only own field data, with no ability to see other users birthdays. -
Slava Abakumov replied to the topic queries on posting in the forum Installing BuddyPress 8 years, 9 months ago
Use
@username
for each user you want to mention in a blog post – and they will receive notification. -
Slava Abakumov replied to the topic queries on posting in the forum Installing BuddyPress 8 years, 9 months ago
Blog posts:
https://wordpress.org/plugins/new-post-notification/
https://wordpress.org/plugins/notify-users-e-mail/
Other options: http://www.mailpoet.com/post-notify-solutions-wordpress/And I didn’t find anything special for activity updates.
-
Slava Abakumov replied to the topic I don't understand some of BuddyPress requirements in the forum Installing BuddyPress 8 years, 9 months ago
If you have WordPress installed with permalinks (so urls are like:
example.com/sample-page
, and they work – display the content of the Sample Page) and you can upload images without any errors on Media page in wp-admin area (and can attached/insert into post/page content in WYSIWYG editor) – you are good to go.
That’s basically what those 2 last…[Read more] -
Slava Abakumov replied to the topic queries on posting in the forum Installing BuddyPress 8 years, 9 months ago
Do you want them to be notified on a new blog post or a new activity post update?
-
Slava Abakumov's profile was updated 8 years, 9 months ago
-
Slava Abakumov replied to the topic how to increase group list in group page? in the forum How-to & Troubleshooting 8 years, 9 months ago
Post this to bp-custom.php or functions.php of your theme.
function redblacked_more_groups_per_page($args) {
$args['per_page'] = 40;return $args;
}add_filter( 'bp_after_has_groups_parse_args', 'redblacked_more_groups_per_page' );
-
Slava Abakumov replied to the topic Private message link displays twice in the forum How-to & Troubleshooting 8 years, 9 months ago
Just go to StudioPress forum and ask there, as it’s clear from your post that it’s not a BuddyPress issue (as everything is ok in 2016 theme).
-
Slava Abakumov replied to the topic Adding to Header area in the forum How-to & Troubleshooting 8 years, 9 months ago
Seems, nothing to do here with BuddyPress. It’s better to post this question somewhere else, on basic development forums. You will need basic css/html and perhaps js skills. Or try to hire a developer.
-
Slava Abakumov replied to the topic members current time? in the forum How-to & Troubleshooting 8 years, 9 months ago
There is no such plugin. But it’s a good idea. Noted. Hope fully will create it soon. You can subscribe to me on github – that’s where I store free plugins.
-
Slava Abakumov replied to the topic Can you add RSS-feeds to profiles to auto update timelines? in the forum How-to & Troubleshooting 8 years, 9 months ago
I’ve developed this plugin: https://github.com/WeFoster/bp-feeds
Currently it does not auto-update activity stream, any user should visit feeds page to get data from feed source.
But auto update will be implemented 🙂 It’s just a tricky task.Would be really cool if you could test it and provide feedback (ideally – using github issues, but this…[Read more]
-
Slava Abakumov replied to the topic how to remove extra field from registration page in the forum How-to & Troubleshooting 8 years, 10 months ago
All fields in default Base (Primary) fields group will appear on registration page. Those fields can be required or not, based on Required setting for fields: http://take.ms/soyY7
So if you want to remove some custom field from registration page – just move it to another fields group (out of Base fields group). -
Slava Abakumov replied to the topic Restric Group Create in the forum Requests & Feedback 8 years, 10 months ago
-
Slava Abakumov replied to the topic how to disable users from leaving a group? in the forum How-to & Troubleshooting 8 years, 10 months ago
Try this: https://buddypress.org/support/topic/disable-leave-group-and-request-membership-buttons/
And try this plugin as well: https://wordpress.org/plugins/buddypress-mandatory-groups/ -
Slava Abakumov replied to the topic Cannot create groups in the forum How-to & Troubleshooting 8 years, 10 months ago
Look in the WordPress codex.
-
Slava Abakumov replied to the topic Cannot create groups in the forum How-to & Troubleshooting 8 years, 10 months ago
Because of no
.htaccess
file (and no WordPress permalinks) BuddyPress will not be working properly. It requires permalinks enabled. On BuddyPress activation you should see this text:
You must update your permalink structure to something other than the default for it to work.
- Load More
@slaffik
Active 3 days, 16 hours ago