Hi,
I’m happy to hear you like DFFS!
You can add this snippet to your Custom JS to hide the checkbox and show Yes / No instead:
function dffs_ready(){
setTimeout(function(){
jQuery(".spjs_boolean_readonly").parent().hide().prev().removeClass("spjshidden");
},10);
}
If you want to style it instead, you can add this to your Custom CSS:
.spjs_boolean_readonly{
font-size:18px!important;
color:green!important;
}
Alexander