Hi itcassy,
Well with IE there are always problems ?? To remove disabled options you can try the fallowing:
Method 1:
If you are familiar with coding open your-theme/header.php file and add the following code snippet, it should work only for IE version 11
<!–[if !IE]><!–>
<script type=”text/javascript”>
jQuery(document).ready(function($){
$(‘option:disabled’).remove();
});
</script>
<!–<![endif]–>
For all IE versions:
<!–[if IE]><!–>
<script type=”text/javascript”>
jQuery(document).ready(function($){
$(‘option:disabled’).remove();
});
</script>
<!–<![endif]–>
Method 2:
Got to your-theme/script.js or your-theme/assets/js/script.js or your-theme/js/script.js the location depends on your theme and add the following code snippet, it works for all the versions of IE, the code snippet should be between jQuery(document).ready(function($){ Code goes here });
var ms_ie = false;
var ua = window.navigator.userAgent;
var old_ie = ua.indexOf(‘MSIE ‘);
var new_ie = ua.indexOf(‘Trident/’);
if ((old_ie > -1) || (new_ie > -1)) {
ms_ie = true;
}
if ( ms_ie ) {
$(‘option:disabled’).remove();
}