Did you find a solution to this, by chance?
Nope, it does not work with ACF so I used shortcodes.
I just posted something about this.
Did you combine the shortcodes for ACF with WP Filebase?
If so, can you show me how you accomplished it? I can’t get it to work.
No, I just treated these separately.
WP filebase is not working as post types and does not use taxonomies.
I got it working with some help from a nice guy on the WordPress channel on IRC.
The shortcode we came up with does not allow any sorting, but it works:
<?php $value = get_field( “memos” ); echo do_shortcode(‘[wpfilebase tag=browser id=”‘. $value .'”]’);?>
“memos” is the name of my ACF field.