Support

Account

Home Forums General Issues Hiding empty fields Reply To: Hiding empty fields

  • I don’t see any ACF code in your template.

    The basic usage would be

    
    if (get_field('your_field_name')) {
      // if the field has content then show the field
      the_field('your-field-name');
    }