Hello again,
Here is some code I wrote to display a radio type choice field from a mailchimp list.
if($var['field_type']=="radio"){
echo '<div class="mc_merge_var">';
echo '<label for="'.$opt.'" class="mc_var_label">'.$var['name'];
if ($var['req'] && $num_fields>1){ echo ' *'; } // Not sure about this feature in mailchimp
echo '</label>';
foreach($var['choices'] as $choice){
echo '<input type="radio" name="'.$opt.'" value="'.$choice.'" /> '.$choice."<br />\n";
}
echo '</div>';
}
placed inside if ($var['req'] || get_option($opt)=='on'){
in mailchimp_includes.php
Are you interested in fixing that feature ?
It works actually … there might be some other code to add …