We working on the Pro version of the plugin and most likely this feature, as well possibility to show certain products will be included in it. But if you familiar with filters, we can add it in Categories REST API and you can exclude unwanted categories from child theme with custom code (just specifying an array with categories ID’s)
Filter name is bftow_get_product_categories. $terms is an array of terms objects. Here’s an example:
add_filter(‘bftow_get_product_categories’, function($terms){
unset($terms[21]);
//where 21 is the ID of the category to be excluded
return $terms;
});
Thank you very much for your help