OK, I tried the search and looked through the Codex, but couldn't resolve my issue(s).
1.) I want to display various thumbnails with one custom field type. This is how my current code looks like:
<a href="<?php echo get_post_meta($post->ID, "Product URL", true); ?>"><img class="side-thumbs" src="<?php echo get_post_meta($post->ID, "Product Picture Thumbnail", true); ?>" alt="<?php echo get_post_meta($post->ID, "Product Name", true); ?>" /></a>
<a href="<?php echo get_post_meta($post->ID, "Product URL", true); ?>"><strong><?php echo get_post_meta($post->ID, "Product Name", true); ?></strong></a>
I know that $single has to be set to false and not to true like above in my code, but when I do that I only get the text array for each custom field value.
I figured out it's because $single is an array, but since I'm no programmer I don't know how I can change the PHP code to display all the custom field values which have the same custom field type. Can anyone help me with that? It would be really appreciated. Thanks!