Uploading images simultaneously and then the images are all grouped in activity

Hi,

Any way to disable this, so all images takes one place one by one in the activity list instead? Otherwise the viewers won’t be able to like images or fav images before they click on the image.

Best Regards

Hi Felipe,
I am sorry to say that it is not possible right now. We will add new filter rtmedia_media_single_activity in next update of rtMedia using which you can create single BuddyPress activity for each media.

oki, I understand, thanks Ritesh!

Best Regards

Did you add the filter??

Best Regards

Hi Felipe,

yes, that filter has been added. You just need to use that filter in your theme and return the value “true”.

Great! Should I put it in the templates, which one? Can you post an example?

Best Regards

yeah sure,

here is the code, you need to put it in your theme’s functions.php file.

add_filter( 'rtmedia_media_single_activity', 'rtmedia_create_single_activity_filter', 99, 1);  

function rtmedia_create_single_activity_filter( $flag ){  
	return true;  
}

Thank you very much Ritesh!

Best Regards

Thanks! Works great, much appreciated Ritesh.

Hi Felipe and Ben,
I am glad to know that your issue is fixed :slight_smile: