Support

Account

Home Forums Front-end Issues Image only showing ID on front end with users Reply To: Image only showing ID on front end with users

  • Hi Moorewebx,

    I think you set your image field to return image ID. There’s two ways you can resolve your problem.

    1. Change return value to image url. See link screenshot for Image Field Settings.

    2. See code below:

    
    <?php echo wp_get_attachment_image( the_author_meta( 'user_profile_image' ) ); ?>

    Thats it, hope I did solve your problem.