It worked for me. Add this script to functions.php bottom and add table normally as you would, just give it an ID #imageshow
function image_show_cfdb(){ ?>
<script type="text/javascript" language="Javascript">
(function($) {
$(document).ready(function() {
$("#imageshow td[title='image'] > div > a").each(function() {
var href = $(this).attr('href');
var label = $(this).html();
var imgTag = '<a href="' + href + '" target="_blank"><img height="100" width="100" src="' + href + '" alt="' + label + '" ></a>';
$(this).parent().html(imgTag);
})
});
})(jQuery);
</script>
<?php }
add_action('wp_footer', 'image_show_cfdb');