I've got this far with some PHP to display a repeatable field but the output just displayed Array
Any ideas would be greatly appreaciated:
<?php
$repeatable = get_post_meta( get_the_ID(), 'ecpt_eventdaytime', true);
if( !empty($repeatable )) {
echo '<img src="/wp-content/uploads/2013/02/Time.gif">';
echo $repeatable ;
echo "<br><br>";
}
?>