Hello,
I have an ACF field that is set as boolean (true/false).
Is it possible to display “Yes” if its true and “No” it its false?
I know that this might be a conditional logic case, that is not still implemented in Bricks, but i was wondering if there is a temp way around it.
Best way but not the easiest perhaps is to display the field itself through code. Most ACF fields display through something like :
<?php the_field('mybooleanfield'); ?>
You could also work with conditional logic (IF / THEN) and use that output to display something (or not)