Support

Account

Home Forums Add-ons Repeater Field Conditional Checkbox Statement in Repeater Reply To: Conditional Checkbox Statement in Repeater

  • Is the checkbox just a true/false field? If so it would be:

    
    <?php 
    if ( get_sub_field('blog_style_gallery_options') ) {
      echo "border";
    }
    ?>