-
Bharat replied to the topic Problem when i upload avatar in registration page. in the forum Third Party Plugins 4 years, 9 months ago
@arcangelgirl
You can add this code in functions.php file or bp-custom.php
add_filter( ‘bp_attachments_current_user_can’, function( $can, $capability ) {
if ( ‘edit_avatar’ !== $capability ) {
return $can;
}
// This will let all users upload an avatar (not just logged in members).
$can = true;
return $can;
}, 10, 2 ); -
rosyteddy replied to the topic Send reminder about not answered message in the forum How-to & Troubleshooting 9 years, 8 months ago
@arcangelgirl You may or may not take this as a starting point :
https://github.com/imath/bp-wake-up-sleepersYou may even politely submit a FR or Feature Request there to include
Users that has never answered to messages.However, one more thing is not clear to me – you have said
“Is it possible to send a reminder to email to user which did not…[Read more] -
Henry Wright replied to the topic How to get user id of activity in the forum How-to & Troubleshooting 9 years, 9 months ago
@arcangelgirl great to hear you got it working! The same idea will apply to the activity stream. You’ll need to make sure you’re using
bp_get_activity_user_id()
in the right place. -
Henry Wright replied to the topic Send reminder about not answered message in the forum How-to & Troubleshooting 9 years, 10 months ago
This will be possible with some custom code but is no trivial task and I doubt there’s anything currently available which will do this for you. Sorry if that’s not what you was hoping to hear 🙁
-
Ricardo Gonçalves replied to the topic Buddypress activity filtering (search) in the forum How-to & Troubleshooting 9 years, 11 months ago
@ARCangelGIRL I think you could make the $type receive the category + subcategory as an unique action. I don’t know how you’re passing the category/subcategory trhough POST, but could try something like:
function ajax_update_activity_contents () {
[Read more]
$bpfb_code = $activity = '';
$aid = 0;
$cat = $_POST['category'];
$subcat =… -
Ricardo Gonçalves replied to the topic Buddypress activity filtering (search) in the forum How-to & Troubleshooting 9 years, 11 months ago
Hello @ARCangelGIRL, I’m facing the same situation and @shanebp solution worked for displaying the action I wanted in the activity stream. But the Load More button is loading all the actions, not just the one I created. I tried to filter the bp ajax querystring in many different ways but it didn’t work. The last try was this…[Read more]
@arcangelgirl
Active 4 years, 1 month ago