wp alchemy multiple image uploader output images to template

Do you have any output code we can reference?

Put this in your Theme file:

     <img src="https://wordpress.stackexchange.com/questions/45576/<?php get_the_value("imgurl'); ?>” style=”width:100px;height:100px” />

if you have multiple you’ll have to go through a foreach loop:

<?php

foreach ($meta['imgurl'] as $img )
{
    echo '<a href="#" /><img src="'. $img .'" /></a>';
}
?>

Hope this helps, I don’t really know this Metabox class, however I’ve used many and it seems like it would work this way.

Good luck!