Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ben.moody

    (@benmoody)

    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

    (@benmoody)

    closed

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Help with finding image’ is closed to new replies.