Ah, ok. I see the issue. It's checking the wrong parameter. Fixing for next build. Quickfix as follows.
IN: components/com_comprofiler/plugin/user/plug_cbcore/cb.core.php
ON: Line 5903
FROM:
Code:
if ( $field->params->get( 'video_terms', 0 ) ) {
TO:
Code:
if ( $field->params->get( 'fieldFile_terms', 0 ) ) {
forge.joomlapolis.com/issues/6335