Hello @spix,
You can do this outside of the loop by using the snippet provided on the main page
`
<?php
// Retrieve The Post’s Author ID
$user_id = get_the_author_meta(‘ID’);
// Set the image size. Accepts all registered images sizes and array(int, int)
$size = ‘thumbnail’;
// Get the image URL using the author ID and image size params
$imgURL = get_cupp_meta($user_id, $size);
// Print the image on the page
echo ‘<img src=”‘. $imgURL .'” alt=””>’;
?>
`
The thing you might need to change would be how you set that $user_id
property. Depending on which user you’re trying to get, you can use several methods to grab that user. Can you tell me how/why you’re trying to get a user in head.php?