Для всех, кто борется с этой проблемой, я заменил строку SSL в PHP (поскольку я использую WordPress).
Вероятно, это не лучшее решение, так как я удаляю SSL, но, поскольку данные не очень конфиденциальны, я могу с этим жить.
<!-- Get Custom Field data (or content, etc.). In this case the custom field is called 'true'-->
<?php $ID = $post_id['ID']; ?>
<?php $custom = get_post_meta($post->ID, 'test', true); ?>
<!-- Strip out SSL because it causes loading issues in IE9 and Chrome (since it is loading the stylesheet from a non-secure address). -->
<?php $withoutssl = str_replace('ssl="true"','ssl="false"', $custom); ?>
<!-- Apply formatting. -->
<?php $formatted = apply_filters('the_content', $withoutssl); ?>
<!-- Output the Custom Field. -->
<?php echo $formatted ?>