diff --git a/gravity-forms/gw-choice-counter.php b/gravity-forms/gw-choice-counter.php index 274525e1f..fe8b55eb1 100644 --- a/gravity-forms/gw-choice-counter.php +++ b/gravity-forms/gw-choice-counter.php @@ -124,7 +124,7 @@ function output_script() { if ( ! values ) { // If no values provided in the config, just get the number of checkboxes checked. if ( self.isCheckableField( $choiceField ) ) { - count += $choiceField.find( ':checked' ).not(' #choice_' + choiceFieldIds[ i ] + '_select_all').length; + count += $choiceField.find( ':checked' ).not(':disabled').not(' #choice_' + choiceFieldIds[ i ] + '_select_all').length; } else { count += $choiceField.find( 'option:selected' ).length; }