Title: Help with finding image
Last modified: August 24, 2016

---

# Help with finding image

 *  Resolved [cemfundog](https://wordpress.org/support/users/cemfundog/)
 * (@cemfundog)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-with-finding-image/)
 * Right now when someone adds an image and uploads it to my site, the form entry
   says “View form entry for file details.”. I need that to be a link to the image.
   In other words, can I make that text say “click to view image” instead and then
   have it link to the image the user had uploaded via that form entry. Please HELP!
 * [https://wordpress.org/plugins/gravity-forms-advanced-file-uploader/](https://wordpress.org/plugins/gravity-forms-advanced-file-uploader/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [ben.moody](https://wordpress.org/support/users/benmoody/)
 * (@benmoody)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-with-finding-image/#post-6018796)
 * Hi you can’t change the text but you should be able to point the link directly
   to the uploaded file by placing this in your functions.php file:
 * add_filter( ‘prso_gform_pluploader_entry_attachment_links’, ‘download_entry_attachments’,
   10, 3 );
    function download_entry_attachments( $attachment_url, $file_id, $post){
 *  //Get url to attachment
    $attachment_url = wp_get_attachment_url( $file_id );
 *  return $attachment_url;
    }
 *  Plugin Author [ben.moody](https://wordpress.org/support/users/benmoody/)
 * (@benmoody)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-with-finding-image/#post-6018797)
 * closed

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Help with finding image’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/gravity-forms-advanced-file-uploader_eeeeee.
   svg)
 * [Gravity Forms Advanced File Uploader](https://wordpress.org/plugins/gravity-forms-advanced-file-uploader/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gravity-forms-advanced-file-uploader/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gravity-forms-advanced-file-uploader/)
 * [Active Topics](https://wordpress.org/support/plugin/gravity-forms-advanced-file-uploader/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gravity-forms-advanced-file-uploader/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gravity-forms-advanced-file-uploader/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [ben.moody](https://wordpress.org/support/users/benmoody/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/help-with-finding-image/#post-6018797)
 * Status: resolved