I am trying to get my an image upload field value in the article category module (field name is: main_image). The field is using custom storage and is mapped to "images".
When I place this in my template "<?php echo $item->images; ?>" I get "::main_image::images/articles/16/2004lamborghinigallardo.jpg::/main_image::"
When I try "<?php echo CCK_Article::getValue( $item->id, 'main_image' ); ?>" I get nothing.
How do I access the actual URL for the image?
Thanks!