در فایل jv_helper.php خط 208 تا 215 ساخت فیلدهای option یا همون yes/no انجام میشه که شامل کدهای زیر هست:
$html = '<div class="controls">
<fieldset class="radio btn-group btn-group-yesno">
<input type="radio" id="'.$id_yes.'" value="'.$yes_value.'" name="'.$name.'" class="btn-group"'.($cur_value === $yes_value ? ' checked="checked"' : '').'>
<label style="display: inline-block; margin: 0;" for="'.$id_yes.'">'.$label_yes.'</label>
<input type="radio" id="'.$id_no.'" value="'.$no_value.'" name="'.$name.'" class="btn-group"'.($cur_value === $no_value ? ' checked="checked"' : '').'>
<label style="display: inline-block; margin: 0;" for="'.$id_no.'">'.$label_no.'</label>
</fieldset>
</div>';
کلاسهایی که به تگ های fieldset و input داده شده و style مربوط به label ها تغییر داده شدند و مشکل رفع شد:
$html = '<div class="controls">
<fieldset class="btn-group btn-group-yesno radio">
<input type="radio" id="'.$id_yes.'" value="'.$yes_value.'" name="'.$name.'" class=""'.($cur_value === $yes_value ? ' checked="checked"' : '').'>
<label for="'.$id_yes.'">'.$label_yes.'</label>
<input type="radio" id="'.$id_no.'" value="'.$no_value.'" name="'.$name.'" class=""'.($cur_value === $no_value ? ' checked="checked"' : '').'>
<label for="'.$id_no.'">'.$label_no.'</label>
</fieldset>
</div>';