Viewing 1 replies (of 1 total)
  • Plugin Author Jake Jackson

    (@blue-liquid-designs)

    Hi Andres,

    You’ll want to display the selected list items using PHP code similar to what’s found in our docs (remove the HTML tags as needed). Then in the foreach loop check if your condition is met and output the desired conditional content:

    foreach ( $form_data['field'][43] as $item ) {
            if( $item == 'Match' ) {
                 echo 'conditional content';
            }
    
            echo "$item<br>";
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Line breaks when using checkboxes’ is closed to new replies.