Hi @controlb, this is not possible. However, with the PRO plugin you can create your own custom javascript function to check if 2 fields have the same value. See: https://conditional-fields-cf7.bdwm.be/advanced-conditional-logic-with-custom-javascript-functions/
So with that you could write 2 javascript functions:
function fieldsAreEqual($field) {
return jQuery('#field-1').val() == jQuery('#field-2').val()
}
//optional
function fieldsAreNotEqual($field) {
return !fieldsAreEqual($field);
}
And create this condition:
show group-1 if field-1 function fieldsAreNotEqual
-
This reply was modified 6 years, 3 months ago by
Jules Colle.