I’m pretty sure that plugin just hooks into the meta fields so in order from them to display you can echo the get_post_meta.
For instance:
<?php echo get_post_meta($post->ID, 'the_name_of_your_custom_field', true); ?>
I’m pretty sure that plugin just hooks into the meta fields so in order from them to display you can echo the get_post_meta.
For instance:
<?php echo get_post_meta($post->ID, 'the_name_of_your_custom_field', true); ?>