Hi @tw2113,
Thank you for your message.
I have just published a plugin update to version 4.1.1, which will allow you to add support for a new field type. To do this, in the functions.php file in your theme directory, add the following code:
add_filter( 'acfbs_field_types', function ( $field_types ) {
$field_types['editor'] = 'Editor';
return $field_types;
} );
I don’t know exactly what the field type is, so in the example I gave the field name as editor – check it in that plugin. After adding this code, you will be able to activate support for the new field type in the plugin settings.
Best,
Mateusz
Working like a charm thus far for my testing. Thank you very much for being willing to add a filter like this for us to work with. Appreciated. Unless something comes up, I’m going to mark this thread as resolved.
@tw2113 I am very pleased. I will be glad if you support the development of the plugin by leaving your review.