Add this code to your theme’s function.php file:
add_filter('mime_types', 'my_mimes');
function my_mimes($mimes) {
// add your mime types
$mimes['epub'] = 'application/epub';
$mimes['mobi'] = 'application/mobi';
return $mimes;
}
I am interested in this as well.
I use Buddyboss too, and I have the same problem.
The new version only works in backend for all browsers for me.