Support

Account

Home Forums General Issues Display all ACF field, except for.. Reply To: Display all ACF field, except for..

  • Hello, just change this line:

    <?php if( $field['value'] ): ?>

    to

    <?php if( $field['value'] && $field['label'] !== 'field_label_you_want_to_hide' ): ?>

    Just replace ‘field_label_you_want_to_hide’ with the actual field label.